Interface | Description |
---|---|
ValidationGroupProvider |
Optional interface which can be implemented on a component to
indicate that it supplies validation.
|
ValidationUI |
User interface controller which can show the user one problem.
|
Class | Description |
---|---|
GroupValidator |
Encapsulates validation of the combination of several UI
components within a
ValidationGroup . |
ValidationGroup |
A
ValidationGroup logically groups a set of GUI-components,
such as text fields, lists, tables, comboboxes etc, each validated
by one or more validators (such as the built-in ones provided by
the framework in StringValidators ). |
ValidationItem |
Common superclass for
ValidationGroup and ValidationListener , providing a common API
for forcing revalidation of the managed UI component or components, see ValidationItem.performValidation() ,
and for temporarily suspending validation, see
ValidationItem.runWithValidationSuspended(java.lang.Runnable) |
ValidationListener<TargetType> |
Abstract base class for UI component listeners that can trigger validation when an interesting
event occurs, and when requested perform validation of the UI component using a
Validator . |
ValidationListenerFactory<CompType,ModelType> |
Factory for listeners on a particular type of component with a particular
type of model.
|
Enum | Description |
---|---|
ValidationStrategy |
Determines what event on the component will trigger running validation.
|