Uses of Interface
org.enhydra.barracuda.core.forms.FormValidator

Packages that use FormValidator
org.enhydra.barracuda.core.forms   
org.enhydra.barracuda.core.forms.validators   
 

Uses of FormValidator in org.enhydra.barracuda.core.forms
 

Classes in org.enhydra.barracuda.core.forms that implement FormValidator
 class AbstractFormValidator
          The root implementation of the FormValidator interface
 class And
          This validator ensures that all of the given validators are valid, (effectively acting as an "AND" or "&&") or a ValidationException will be generated.
 class DefaultFormValidator
          This class provides the default implementation of FormValidator.
 class Not
          This validator ensures that something is NOT valid.
 class Or
          This validator ensures that at least one of the given validators is valid, (effectively acting as an "OR" or "||") or a ValidationException will be generated The sub-validators can be specified as array, list or by using the convenience constructors.
 

Uses of FormValidator in org.enhydra.barracuda.core.forms.validators
 

Classes in org.enhydra.barracuda.core.forms.validators that implement FormValidator
 class DateRangeValidator
          This validator ensures that a value is within a given date range
 class DateValidator
          This validator ensures that a value is a valid date
 class DigitValidator
          This validator ensures that the value contains only digits tested against the field size length (len).
 class EqualsValidator
          This validator ensures that the original value constitues a valid type
 class ListValidator
          This validator validates all items even if OrigVal is an ArrayList
 class MaxLengthValidator
          This validator ensures that the length of a value is <= a maximum length
 class MinLengthValidator
          This validator ensures that the length of a value is >= a minimum length
 class NotNullValidator
          This validator ensures that a form element is not null or blanks.
 class RangeValidator
          This validator ensures that a value is within a given number range
 class ValidTypeValidator
          This validator ensures that the original value constitues a valid type
 



Copyright © 2001 Enhydra.org