Uses of Interface
org.apache.tapestry.form.validator.Validator

Packages that use Validator
org.apache.tapestry.contrib.palette

A powerful component for handling the very common case of moving elements from two different multi selection input boxes. 

org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.form.validator Form validation infrastructure. 
 

Uses of Validator in org.apache.tapestry.contrib.palette
 

Methods in org.apache.tapestry.contrib.palette with parameters of type Validator
 void Palette.overrideContributions(Validator validator, FormComponentContributorContext context, IMarkupWriter writer, IRequestCycle cycle)
          Very similar to the method signature used by ValidatableFieldSupport.renderContributions(ValidatableField, IMarkupWriter, IRequestCycle), with the additional parameter being the Validator that this component has chosen to override.
 boolean Palette.overrideValidator(Validator validator, IRequestCycle cycle)
          Called during render of the specified component.
 

Uses of Validator in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form with parameters of type Validator
 void ValidatableFieldExtension.overrideContributions(Validator validator, FormComponentContributorContext context, IMarkupWriter writer, IRequestCycle cycle)
          Very similar to the method signature used by ValidatableFieldSupport.renderContributions(ValidatableField, IMarkupWriter, IRequestCycle), with the additional parameter being the Validator that this component has chosen to override.
 boolean ValidatableFieldExtension.overrideValidator(Validator validator, IRequestCycle cycle)
          Called during render of the specified component.
 

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

Classes in org.apache.tapestry.form.validator that implement Validator
 class AbstractValidatorWrapper
          Abstract implementation of Validator that delegates to some other object.
 class BaseValidator
          Abstract implementation of Validator.
 class BeanValidatorWrapper
          Implementation of Validator that delegates to a managed bean obtained from a component.
 class Email
          Validates that the user input, a string, is an email address (by checking it against a regular expression).
 class Identity
          Validates that the input value is the same as the value of another field.
 class Max
          Validates that the input value is not larger than a particular maximum value.
 class MaxDate
          Validates that the object, a Date, is not after a set maximum.
 class MaxLength
          Validator that ensures a string value does not exceed a maximum length.
 class Min
          Expects the object to be a number, and checks that the value not smaller than a specified value.
 class MinDate
          Expects the value to be a Date, and constrains the date to follow a particular date.
 class MinLength
          Validates that the value, a string, is of a minimum length.
 class Pattern
          Validates a user input string against a regular expression pattern.
 class Required
          Validator that ensures a value was supplied.
 

Methods in org.apache.tapestry.form.validator that return Validator
protected abstract  Validator AbstractValidatorWrapper.getDelegate()
           
protected  Validator BeanValidatorWrapper.getDelegate()
           
 



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.