| org.databene.benerator.ValidatingGeneratorProxy
ValidatingGeneratorProxy | public class ValidatingGeneratorProxy extends ValidatingGenerator (Code) | | Generator proxy that uses another generator for creating values and filters out invalid ones.
See Also: ValidatingGenerator
See Also:
See Also: Created: 29.08.2006 08:27:11 |
ValidatingGeneratorProxy | public ValidatingGeneratorProxy(Generator<E> source, Validator<E> validator)(Code) | | Constructor with the source generator and the validator to use
|
available | public boolean available()(Code) | | |
close | public void close()(Code) | | Calls the close() method on the source generator
|
generateImpl | protected E generateImpl()(Code) | | Callback method implementation from ValidatingGenerator.
This calls the source's generate() method and returns its result.
|
getGeneratedType | public Class<E> getGeneratedType()(Code) | | |
reset | public void reset()(Code) | | Calls the reset() method on the source generator
|
validate | public void validate()(Code) | | |
|
|