Validator
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.util.validation.Validator |
File last modified: | Friday, 13 May 2011, 22:20:36 |
Class for validation of user input values in UI components.
UI components must implement IValidatable, and be added for validation through implementations of IValidationRule.
Example
-
In a form, suppose two objects of type InputField are defined: tName & tEmail. The class InputField implements Ivalidatable.
Add the following code to allow validation on those objects.
mValidator = new Validator(); mValidator.addValidationRule(new EmptyStringValidationRule(tName)); mValidator.addValidationRule(new EmailValidationRule(tEmail));
This code sets a validation rule on tName to check for an empty string, and on tEmail to check for a valid email address. To perform the actual validation, use this:var errors:Array = mValidator.validate();
If either of the validation rules returns false, it will be added to the list oferrors
. This list will have a length of 0 if no errors were found. Run through the list of errors to get the rule(s) that returned false. The UI component itself can then be accessed through thegetTarget()
function of IValidatable.
Summary
Instance methods
-
addValidationRule
(inRule:IValidationRule) : void
- Add a validation rule
-
validate
() : Array
- Check validity of all added validation rules
-
clear
() : void
- Empty the list of validation rules
- getTargets () : Array
- toString () : String
Instance methods
clear
function clear() : void
Empty the list of validation rules
getTargets
function getTargets() : Array
Returns
- all targets for validation, objects of type IValidatable
toString
function toString() : String
validate
function validate() : Array
Check validity of all added validation rules
Returns
- a list of all validation rules that did not validate; objects of type IValidationRule