Uses of Interface
net.sf.jguiraffe.transform.Validator
-
Packages that use Validator Package Description net.sf.jguiraffe.gui.builder.components.tags A package with tag handler classes for creating GUI components.net.sf.jguiraffe.gui.forms A package for dealing with forms.net.sf.jguiraffe.transform The transform package contains interfaces and classes for transforming and validating data. -
-
Uses of Validator in net.sf.jguiraffe.gui.builder.components.tags
Classes in net.sf.jguiraffe.gui.builder.components.tags with type parameters of type Validator Modifier and Type Class Description classValidatorBaseTag<T extends Validator>A base class for tag handler implementations that create validators for input components.Methods in net.sf.jguiraffe.gui.builder.components.tags with parameters of type Validator Modifier and Type Method Description voidValidatorsTag. addChildValidator(Validator child, Map<String,Object> props)Adds a new child validator. -
Uses of Validator in net.sf.jguiraffe.gui.forms
Methods in net.sf.jguiraffe.gui.forms that return Validator Modifier and Type Method Description ValidatorDefaultValidatorWrapper. getValidator()Returns the wrapped validator.Constructors in net.sf.jguiraffe.gui.forms with parameters of type Validator Constructor Description DefaultValidatorWrapper(Validator v, TransformerContext ctx)Creates a new instance ofDefaultValidatorWrapperand initializes it. -
Uses of Validator in net.sf.jguiraffe.transform
Classes in net.sf.jguiraffe.transform that implement Validator Modifier and Type Class Description classAbstractDecimalTransformer<T extends Number>A base class for number transformers that operate on floating point numbers.classAbstractIntegerTransformer<T extends Number>A base class for number transformers that operate on integer numbers.classChainValidatorA specialValidatorimplementation that allows combining multiple primitive validators.classDateTimeTransformerA specialized transformer that transforms strings into date objects with both a date and time component.classDateTransformerA specialized transformer that transforms strings into date objects.classDateTransformerBaseAn abstract base class for date transformer objects.classDoubleTransformerA specialized number transformer implementation that deals with numbers of typejava.lang.Double.classDummyTransformerThis class provides dummy implementations for theTransformerand theValidatorinterfaces.classFloatTransformerA specialized number transformer implementation that deals with numbers of typejava.lang.Float.classIntegerTransformerA specialized number transformer implementation that deals with numbers of typejava.lang.Integer.classLongTransformerA specialized number transformer implementation that deals with numbers of typejava.lang.Long.classNumberTransformerBase<T extends Number>An abstract base class for transformers and validators for numbers.classRegexValidatorA specializedValidatorimplementation that uses regular expressions to validate user input.classRequiredValidatorA specializedValidatorimplementation that checks whether data was entered in mandatory fields.classTimeTransformerA specialized transformer that transforms strings into date objects, taking only the time portion into account.Methods in net.sf.jguiraffe.transform that return Validator Modifier and Type Method Description ValidatorChainValidator. getChildValidator(int index)Returns the child validator at the given index.Methods in net.sf.jguiraffe.transform with parameters of type Validator Modifier and Type Method Description voidChainValidator. addChildValidator(Validator child)Adds a child validator to this chain validator.voidChainValidator. addChildValidator(Validator child, Map<String,Object> props)Adds a child validator to this chain validator and sets special properties for the new child.
-