Uses of Class
org.apache.tapestry.valid.ValidatorException

Packages that use ValidatorException
org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.form.translator   
org.apache.tapestry.form.validator   
org.apache.tapestry.valid Components and classes that provide specialized, validating text fields. 
 

Uses of ValidatorException in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form that throw ValidatorException
 void Upload.bind(IMarkupWriter writer, IRequestCycle cycle)
           
 void Select.bind(IMarkupWriter writer, IRequestCycle cycle)
           
 void RequirableField.bind(IMarkupWriter writer, IRequestCycle cycle)
          Called on the field if the required field check succeeds.
 void RadioGroup.bind(IMarkupWriter writer, IRequestCycle cycle)
           
 void PropertySelection.bind(IMarkupWriter writer, IRequestCycle cycle)
           
 

Uses of ValidatorException in org.apache.tapestry.form.translator
 

Methods in org.apache.tapestry.form.translator that throw ValidatorException
 java.lang.Object Translator.parse(IFormComponent field, java.lang.String value)
          Invoked during rewind to parse a submitted input value into an object suitable for the specified component.
 java.lang.Object AbstractTranslator.parse(IFormComponent field, java.lang.String text)
           
protected  java.lang.Object FormatTranslator.parseText(IFormComponent field, java.lang.String text)
           
protected abstract  java.lang.Object AbstractTranslator.parseText(IFormComponent field, java.lang.String text)
           
 

Uses of ValidatorException in org.apache.tapestry.form.validator
 

Methods in org.apache.tapestry.form.validator that throw ValidatorException
 void Validator.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
          Invoked to validate input for the field.
 void Required.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void Pattern.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void MinLength.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void MinDate.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void Min.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
          Does comparison based on the Number.doubleValue().
 void MaxLength.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void MaxDate.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 void Max.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
          Does comparison based on the Number.doubleValue().
 void Email.validate(IFormComponent field, ValidationMessages messages, java.lang.Object object)
           
 

Uses of ValidatorException in org.apache.tapestry.valid
 

Methods in org.apache.tapestry.valid with parameters of type ValidatorException
 void ValidationDelegate.record(ValidatorException ex)
          Invokes ValidationDelegate.record(String, ValidationConstraint), or ValidationDelegate.record(IRender, ValidationConstraint)if the error renderer propertyis not null.
 void IValidationDelegate.record(ValidatorException ex)
          The error notification method, invoked during the rewind phase (that is, while HTTP parameters are being extracted from the request and assigned to various object properties).
 

Methods in org.apache.tapestry.valid that throw ValidatorException
protected  boolean BaseValidator.checkRequired(IFormComponent field, java.lang.String value)
          Invoked to check if the value is null.
 java.lang.Object UrlValidator.toObject(IFormComponent field, java.lang.String input)
           
 java.lang.Object StringValidator.toObject(IFormComponent field, java.lang.String input)
           
 java.lang.Object PatternValidator.toObject(IFormComponent field, java.lang.String input)
           
 java.lang.Object NumberValidator.toObject(IFormComponent field, java.lang.String value)
           
 java.lang.Object IValidator.toObject(IFormComponent field, java.lang.String input)
          Converts input, submitted by the client, into an object value.
 java.lang.Object IntValidator.toObject(IFormComponent field, java.lang.String value)
           
 java.lang.Object EmailValidator.toObject(IFormComponent field, java.lang.String input)
           
 java.lang.Object DateValidator.toObject(IFormComponent field, java.lang.String value)