public interface FormControllerValidationListener extends EventListener
Definition of an interface to be implemented by objects that are interested
in validation operations performed by a FormController.
Each time a FormController's FormController.validate() method
is called, event listeners of this type are notified. This gives them a
chance to react on validation results, e.g. UI components containing invalid
data can be marked, or validation messages can be displayed. This event
listener interface is just a generic way of participating in the validation
process of a FormController.
| Modifier and Type | Method and Description |
|---|---|
void |
validationPerformed(FormControllerValidationEvent event)
Notifies this event listener that a validation operation was performed.
|
void validationPerformed(FormControllerValidationEvent event)
event - the event object with information about the validationCopyright © 2016 The JGUIraffe Team. All rights reserved.