Uses of Interface
com.google.gwt.validation.client.interfaces.IConstraint

Packages that use IConstraint
com.google.gwt.validation.client   
com.google.gwt.validation.rebind   
 

Uses of IConstraint in com.google.gwt.validation.client
 

Classes in com.google.gwt.validation.client that implement IConstraint
 class AssertFalseValidator
          Validator that implements the @AssertFalse annotation
 class AssertTrueValidator
          Validator that implements the @AssertTrue annotation
 class EmailValidator
          Implements the @Email annotation.
 class FutureValidator
          Validator that implements the @Future annotation
 class LengthValidator
          Validator that implements the @Length annotation.
 class MaxValidator
          Implements the @Max annotation.
 class MinValidator
          Implements the @Min annotation.
 class NotEmptyValidator
          Implements the @NotEmpty annotation.
 class NotNullValidator
          Implements the @NotNull annotation.
 class PastValidator
          Validator that implements the @Past annotation
 class PatternValidator
          Implements the @Pattern annotation.
 class RangeValidator
          Implements the @Range annotation.
 class SizeValidator
          Validator that implements the @Size annotation.
 

Uses of IConstraint in com.google.gwt.validation.rebind
 

Methods in com.google.gwt.validation.rebind that return IConstraint
 IConstraint<java.lang.annotation.Annotation> ValidationPackage.getImplementingConstraint()
          Get an instance of the implementing constraint
 

Constructors in com.google.gwt.validation.rebind with parameters of type IConstraint
ValidationPackage(IConstraint<java.lang.annotation.Annotation> constraint, java.lang.String message, java.lang.reflect.Method method, java.lang.reflect.Field field, java.lang.String[] groups, java.util.Map<java.lang.String,java.lang.String> propertyMap)
          Create a validation package for the given constraint, with a message specified, for the method and field given that applies to the groups as specified, with the given property map for initilization of the constraint implementation.