Interface ExtendibleGenerator<I,T>
-
- Type Parameters:
I- type of input generatorT- type of generated values
- All Superinterfaces:
Generator<T>
- All Known Subinterfaces:
FrequencyGenerator<T>
- All Known Implementing Classes:
DefaultFrequencyGenerator,StringGenerator
public interface ExtendibleGenerator<I,T> extends Generator<T>
Generator which depends upon other generator instances. After creation new input generators could be added.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtendibleGenerator<I,T>add(Generator<I> newGenerator)Add a new generator.
-