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<? super 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<? super T>... validators)
          Adds a validator to this form component.
 FormComponent<T> FormComponent.add(IValidator<? super T> validator)
          Adds a validator to this form component
 FormComponent<T> FormComponent.remove(IValidator<? super T> validator)
          Removes a validator from the form component.
 

Constructors in org.apache.wicket.markup.html.form with parameters of type IValidator
EmailTextField(String id, IModel<String> model, IValidator<String> emailValidator)
          Construct.
 

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.
 class ValidatorAdapter<T>
          Adapts IValidator to Behavior
 

Methods in org.apache.wicket.validation that return IValidator
 IValidator<T> ValidatorAdapter.getValidator()
          Gets adapted validator
 

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.
 ValidationError ValidationError.addKey(IValidator<?> validator)
          Shortcut for adding a standard message key which is the simple name of the validator' class
 ValidationError ValidationError.addKey(IValidator<?> validator, String variation)
          Shortcut for adding a standard message key variation which is the simple name of the validator class followed by a dot and the variation
 

Constructors in org.apache.wicket.validation with parameters of type IValidator
ValidationError(IValidator<?> validator)
          Constructs a validation error with the validator's standard key.
ValidationError(IValidator<?> validator, String variation)
          Constructs a validation error with a variation of validator's standard key.
ValidatorAdapter(IValidator<T> validator)
          Constructor
 

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

Classes in org.apache.wicket.validation.validator that implement IValidator
 class AbstractRangeValidator<R extends Comparable<R> & Serializable,V extends Serializable>
          Base class for validators that check if a given value falls within [min,max] range.
 class AbstractValidator<T>
          Deprecated. with changes to ValidationError in 6.0 this class serves very little purpose. Validators should implement IValidator directly and extend Behavior where needed.
 class CreditCardValidator
          Checks if a credit card number is valid.
 class DateValidator
          Validator for checking if a given date falls within [min,max] range.
 class EmailAddressValidator
          Validator for checking the form/pattern of email addresses.
 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 if length of a string falls within [min,max] range.
 class UrlValidator
          Validator for checking URLs.
 



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