com.jgoodies.validation |
Consists of the required validation framework core types.
Related Documentation
For more information see:
@see com.jgoodies.validation.message
@see com.jgoodies.validation.util
@see com.jgoodies.validation.view
|
Java Source File Name | Type | Comment |
Severity.java | enum | An enumeration for the severities used in
ValidationMessage . |
Validatable.java | Interface | Describes an object that can be validated, or in other words
a self-validatable object. |
ValidationMessage.java | Interface | Describes validation messages as used by the JGoodies Validation framework.
All validation messages provide a formatted text (
ValidationMessage.formattedText() )
and are categorized into types of different severity (@link #severity()}).
Validation messages are collected during the validation process and
are held by instances of
com.jgoodies.validation.ValidationResult .
This class has been designed to be decoupled from user interface components
(views) that present and edit the validated data. |
ValidationResult.java | Class | Describes a validation result as a list of ValidationMessages. |
ValidationResultModel.java | Interface | Describes a model that holds a
ValidationResult and provides bound
read-only properties for the result, severity, error and messages state. |
Validator.java | Interface | Describes objects that can validate other objects. |