com.google.gwt.validation.client.interfaces
Interface IInvalidConstraint<T>

All Known Implementing Classes:
InvalidConstraint

public interface IInvalidConstraint<T>

Describe a constraint validation defect
TODO add pointers to the metadata?
From the JSR-303 specification

Author:
Emmanuel Bernard

Method Summary
 T getInvalidObject()
          Root bean being validated
 java.lang.String getMessage()
          Error message
 java.lang.String getPropertyPath()
          the property path to the value from rootBean Null if the value is the rootBean itself
 java.lang.Object getValue()
          The value failing to pass the constraint
 

Method Detail

getMessage

java.lang.String getMessage()
Error message


getInvalidObject

T getInvalidObject()
Root bean being validated


getValue

java.lang.Object getValue()
The value failing to pass the constraint


getPropertyPath

java.lang.String getPropertyPath()
the property path to the value from rootBean Null if the value is the rootBean itself