Uses of Class
org.apache.wicket.validation.ValidationError

Packages that use ValidationError
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 ValidationError in org.apache.wicket.markup.html.form
 

Methods in org.apache.wicket.markup.html.form that return ValidationError
protected  ValidationError FormComponent.newValidationError(ConversionException cause)
          This method is called, when the validation triggered by FormComponent.convertInput() failed with a ConversionException, to construct a ValidationError based on the exception.
 

Uses of ValidationError in org.apache.wicket.validation
 

Methods in org.apache.wicket.validation that return ValidationError
 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
 ValidationError ValidationError.addKey(String key)
          Adds a key to the list of keys that will be tried against IErrorMessageSource to locate the error message string.
 ValidationError ValidationError.addMessageKey(String key)
          Deprecated. use addKey(String)
 ValidationError ValidationError.setMessage(String message)
          Sets message that will be used when no message could be located via message keys.
 ValidationError ValidationError.setVariable(String name, Object value)
          Sets a key and value in the variables map for use in substitution.
 ValidationError ValidationError.setVariables(Map<String,Object> vars)
          Sets the variables map for this error.
 

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

Methods in org.apache.wicket.validation.validator that return ValidationError
protected  ValidationError DateValidator.decorate(ValidationError error, IValidatable<Date> validatable)
           
protected  ValidationError UrlValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError StringValidator.decorate(ValidationError error, IValidatable<String> validatable)
           
protected  ValidationError PatternValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError CreditCardValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError AbstractRangeValidator.decorate(ValidationError error, IValidatable<V> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError RangeValidator.decorate(ValidationError error, IValidatable<Z> validatable)
           
 

Methods in org.apache.wicket.validation.validator with parameters of type ValidationError
protected  ValidationError DateValidator.decorate(ValidationError error, IValidatable<Date> validatable)
           
protected  ValidationError UrlValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError StringValidator.decorate(ValidationError error, IValidatable<String> validatable)
           
protected  ValidationError PatternValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError CreditCardValidator.decorate(ValidationError error, IValidatable<String> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError AbstractRangeValidator.decorate(ValidationError error, IValidatable<V> validatable)
          Allows subclasses to decorate reported errors
protected  ValidationError RangeValidator.decorate(ValidationError error, IValidatable<Z> validatable)
           
 



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