com.google.gwt.validation.client
Annotation Type ConstraintValidator


@Documented
@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
public @interface ConstraintValidator

Link between an constraint annotation and its constraint validation implementation
A given constraint annotation should be annotated by a @ValidatorClass annotation to refer to its constraint validation implementation
(Taken from JSR-303 example implementation in specification document.)


Required Element Summary
 java.lang.Class<? extends IConstraint<?>> value
           
 

Element Detail

value

public abstract java.lang.Class<? extends IConstraint<?>> value