Uses of Interface
org.apache.wicket.validation.IValidator

Packages that use IValidator
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.validation.validator   
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.validation This package provides interfaces for Wicket's validation support. 
org.apache.wicket.validation.validator This package provides an implementation of Wicket's validation support. 
 

Uses of IValidator in org.apache.wicket.extensions.ajax.markup.html
 

Methods in org.apache.wicket.extensions.ajax.markup.html with parameters of type IValidator
 AjaxEditableLabel<T> AjaxEditableLabel.add(IValidator<T> validator)
          Adds a validator to this form component.
 

Uses of IValidator in org.apache.wicket.extensions.validation.validator
 

Classes in org.apache.wicket.extensions.validation.validator that implement IValidator
 class RfcCompliantEmailAddressValidator
          Validator for validating email addresses according to the RFC 822.
 

Uses of IValidator in org.apache.wicket.markup.html.form
 

Methods in org.apache.wicket.markup.html.form that return types with arguments of type IValidator
 List<IValidator<T>> FormComponent.getValidators()
          Gets an unmodifiable list of validators for this FormComponent.
 

Methods in org.apache.wicket.markup.html.form with parameters of type IValidator
 FormComponent<T> FormComponent.add(IValidator<T>... validators)
          Adds a validator to this form component.
 FormComponent<T> FormComponent.add(IValidator<T> validator)
          Adds a validator to this form component
 

Uses of IValidator in org.apache.wicket.validation
 

Subinterfaces of IValidator in org.apache.wicket.validation
 interface INullAcceptingValidator<T>
          Marker interface for validators that will accept a null value.
 

Classes in org.apache.wicket.validation that implement IValidator
 class CompoundValidator<T>
          A compound IValidator.
 

Methods in org.apache.wicket.validation that return types with arguments of type IValidator
 List<IValidator<T>> CompoundValidator.getValidators()
          Gets an unmodifiable list of the registered validators.
 

Methods in org.apache.wicket.validation with parameters of type IValidator
 CompoundValidator<T> CompoundValidator.add(IValidator<T> validator)
          Adds an IValidator to the chain of validators.
 

Uses of IValidator in org.apache.wicket.validation.validator
 

Classes in org.apache.wicket.validation.validator that implement IValidator
 class AbstractValidator<T>
          Convenience base class for IValidators.
 class CreditCardValidator
          Checks if a credit card number is valid.
 class DateValidator
          Validator for checking dates.
 class EmailAddressPatternValidator
          Deprecated. Use EmailAddressValidator instead. Don't forget to update your resource keys!
 class EmailAddressValidator
          Validator for checking the form/pattern of email addresses.
 class MaximumValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking that the value is not greater then a specified maximum value
 class MinimumValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking that the value is not smaller then a specified minimum value
 class NumberValidator<T extends Number>
          Deprecated. RangeValidator, MaximumValidator, MinimumValidator
static class NumberValidator.DoubleMaximumValidator
          Deprecated. see MaximumValidator
static class NumberValidator.DoubleMinimumValidator
          Deprecated. see MinimumValidator
static class NumberValidator.DoubleRangeValidator
          Deprecated. see RangeValidator
static class NumberValidator.MaximumValidator
          Deprecated. see MaximumValidator
static class NumberValidator.MinimumValidator
          Deprecated. see MinimumValidator
static class NumberValidator.RangeValidator
          Deprecated. see RangeValidator
 class PatternValidator
          Validates a Component by matching the component's value against a regular expression pattern.
 class RangeValidator<Z extends Comparable<Z> & Serializable>
          Validator for checking if a given value falls within [min,max] range.
 class StringValidator
          Validator for checking String lengths.
static class StringValidator.ExactLengthValidator
          Validator for checking if the length of a String is exactly the specified length.
static class StringValidator.LengthBetweenValidator
          Validator for checking if the length of a String is within the specified range.
static class StringValidator.MaximumLengthValidator
          Validator for checking if the length of a String meets the maximum length requirement.
static class StringValidator.MinimumLengthValidator
          Validator for checking if the length of a String meets the minimum length requirement.
 class UrlValidator
          Validator for checking URLs.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.