public class FormControllerValidationEvent extends FormControllerEvent
A specialized FormControllerEvent
class that is generated when the
controller performs a validation.
Events of this type are sent to FormControllerValidationListener
objects registered at a FormController
whenever a validation
operation was performed.
source
Constructor and Description |
---|
FormControllerValidationEvent(FormController source,
FormValidatorResults results)
Creates a new instance of
FormControllerValidationEvent and
initializes it with the FormController that is the source of this
event and the results of the validation operation. |
Modifier and Type | Method and Description |
---|---|
FormValidatorResults |
getValidationResults()
Returns the
FormValidatorResults object with the results of the
validation operation. |
getFormController
getSource, toString
public FormControllerValidationEvent(FormController source, FormValidatorResults results)
FormControllerValidationEvent
and
initializes it with the FormController
that is the source of this
event and the results of the validation operation.source
- the source FormController
(must not be null)results
- the results of the validation operation (must not be
null)IllegalArgumentException
- if a required parameter is missingpublic FormValidatorResults getValidationResults()
FormValidatorResults
object with the results of the
validation operation.FormValidatorResults
objectCopyright © 2016 The JGUIraffe Team. All rights reserved.