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 AjaxEditableLabel.add(IValidator 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 with parameters of type IValidator
 FormComponent FormComponent.add(IValidator 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
          Marker interface for validators that will accept a null value.
 

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

Methods in org.apache.wicket.validation with parameters of type IValidator
 CompoundValidator CompoundValidator.add(IValidator 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
          Convenience base class for IValidators.
 class CreditCardValidator
          Performs the so-called "mod 10" algorithm to check the validity of credit card numbers such as VISA.
 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 NumberValidator
          Validator for checking numbers.
static class NumberValidator.DoubleMaximumValidator
          Validator for checking if a given double meets a maximum requirement.
static class NumberValidator.DoubleMinimumValidator
          Validator for checking if a given double meets the minimum requirement.
static class NumberValidator.DoubleRangeValidator
          Validator for checking if a given double is within the specified range.
static class NumberValidator.MaximumValidator
          Validator for checking if a given number meets the maximum requirement.
static class NumberValidator.MinimumValidator
          Validator for checking if a given number number meets the minimum requirement.
static class NumberValidator.RangeValidator
          Validator for checking if a given number is within the specified range.
 class PatternValidator
          Validates a Component by matching the component's value against a regular expression pattern.
 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-2010 Apache Software Foundation. All Rights Reserved.