com.jidesoft.validation |
|
Java Source File Name | Type | Comment |
TableValidationObject.java | Class | TableValidationObject extends ValidationObject
to provide row and column information of the value to be validated. |
ValidationObject.java | Class | ValidationObject is an object containing the information that needed by Validator.
The base class has three things - source, new value and old value.
The source is the object who has the Validator. |
ValidationResult.java | Class | ValidationResult is the object that returns from the
Validator.validating(ValidationObject) .
There are three things on the result.
- valid: whether the result is valid.
|
Validator.java | Interface | Validator is an interface for validating a object. |