Package wicket.markup.html.form.validation

Support for form validation.

See:
          Description

Interface Summary
IFormValidationStrategy Delegate for form validation.
IValidator THIS INTERFACE IS NOT PART OF THE WICKET PUBLIC API.
 

Class Summary
AbstractValidator Base class for form component validators.
CustomValidator A validator for strings designed for subclassing.
EmailAddressPatternValidator Validator for checking the form/pattern of email addresses.
FormComponentFeedbackBorder A border that can be placed around a form component to indicate when the bordered child has a validation error.
IntegerValidator Ensures that the form component has a numeric value in a given range.
IValidator.NullValidator Validator that does nothing.
LengthValidator Validates that a form component's string value is of a certain min/max length.
PatternValidator Validates component by matching the component's value against a regular expression pattern.
RequiredValidator Validator that ensures a component has a non-null and non-empty value.
StringValidator A validator for strings designed for subclassing.
TypeValidator Validates input by trying it to convert to the given type using the IConverterinstance of the component doing the validation.
 

Package wicket.markup.html.form.validation Description

Support for form validation. Form components can have validations assigned, which are triggered before the models of the form components are updated. If validation fails, the denied input is re-displayed by the components, and the error messages are collected and available in FeedbackMessages.



Copyright © 2004-2005 Wicket developers. All Rights Reserved.