|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of FormValidator in org.enhydra.barracuda.contrib.dbroggisch.repopulation |
Classes in org.enhydra.barracuda.contrib.dbroggisch.repopulation that implement FormValidator | |
class |
SelectFormValidator
|
Constructors in org.enhydra.barracuda.contrib.dbroggisch.repopulation with parameters of type FormValidator | |
SelectFormElement(String ikey,
String iname,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Creates a new SelectFormElement instance. |
|
SelectFormElement(ListModel lm,
String ikey,
String iname,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Creates a new SelectFormElement instance. |
|
SelectFormElement(ListModel lm,
String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Creates a new SelectFormElement instance. |
|
SelectFormElement(ListModel lm,
ListSelectionModel lsm,
String ikey,
String iname,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Creates a new SelectFormElement instance. |
|
SelectFormElement(String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator)
Creates a new SelectFormElement instance. |
|
SelectFormElement(ListModel lm,
ListSelectionModel lsm,
String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator)
Creates a new SelectFormElement instance. |
|
GroupFormElement(ListModel lm,
String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
|
Uses of FormValidator in org.enhydra.barracuda.contrib.sam.data |
Classes in org.enhydra.barracuda.contrib.sam.data that implement FormValidator | |
class |
RegexValidator
This validator ensures that a value matches a given regexp. |
Uses of FormValidator in org.enhydra.barracuda.contrib.sam.xmlform |
Methods in org.enhydra.barracuda.contrib.sam.xmlform that return FormValidator | |
protected FormValidator |
XmlFormMap.buildValidatorObject(Validator validator)
recursivly called to construct a validator hierarchy. |
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. |
Fields in org.enhydra.barracuda.core.forms declared as FormValidator | |
protected FormValidator[] |
Or._fv
|
protected FormValidator |
Not.fv
|
protected FormValidator |
DefaultFormElement.validator
|
protected FormValidator[] |
And._fv
|
Methods in org.enhydra.barracuda.core.forms that return FormValidator | |
FormValidator[] |
Or.getSubValidators()
Return the sub-validators that are or'ed together Do not assume this array is of length 2, in order to allow for future use. |
FormValidator |
Not.getSubValidator()
Return the value that is being not'ed |
FormValidator |
FormElement.getValidator()
Get the default FormValidator for this form element |
FormValidator |
DefaultFormElement.getValidator()
Get the default FormValidator for this form element |
FormValidator[] |
And.getSubValidators()
Return the sub-validators that are or'ed together Do not assume this array is of length 2, in order to allow for future use. |
Methods in org.enhydra.barracuda.core.forms with parameters of type FormValidator | |
void |
FormMap.defineValidator(FormValidator validator)
This defines a validator for the entire form. |
void |
FormElement.setValidator(FormValidator validator)
Set the FormValidator for this form element |
void |
DefaultFormValidator.addValidator(FormValidator validator)
Add a child validator |
void |
DefaultFormValidator.removeValidator(FormValidator validator)
Remove a child validator |
void |
DefaultFormMap.defineValidator(FormValidator validator)
This defines a validator for the entire form. |
void |
DefaultFormElement.setValidator(FormValidator ivalidator)
Set the FormValidator for this form element |
Constructors in org.enhydra.barracuda.core.forms with parameters of type FormValidator | |
Or(FormValidator[] fv)
Public constructor. |
|
Or(FormValidator[] fv,
String ierrmsg)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2,
String ierrmsg)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2,
FormValidator fv3)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
String ierrmsg)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
FormValidator fv4)
Public constructor. |
|
Or(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
FormValidator fv4,
String ierrmsg)
Public constructor. |
|
Not(FormValidator ifv)
Public constructor. |
|
Not(FormValidator ifv,
String ierrmsg)
Public constructor. |
|
DefaultFormElement(String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator)
Public constructor. |
|
DefaultFormElement(String ikey,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Public constructor, Name defaults to Key |
|
DefaultFormElement(String ikey,
String iname,
FormType itype,
Object idefaultVal,
FormValidator ivalidator,
boolean iallowMultiples)
Public constructor |
|
And(FormValidator[] fv)
Public constructor. |
|
And(FormValidator[] fv,
String ierrmsg)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2,
String ierrmsg)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2,
FormValidator fv3)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
String ierrmsg)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
FormValidator fv4)
Public constructor. |
|
And(FormValidator fv1,
FormValidator fv2,
FormValidator fv3,
FormValidator fv4,
String ierrmsg)
Public constructor. |
Uses of FormValidator in org.enhydra.barracuda.core.forms.validators |
Classes in org.enhydra.barracuda.core.forms.validators that implement FormValidator | |
class |
CardinalityValidator
This validator ensures that a value is a valid date |
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 instance of java.util.List |
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 |
Fields in org.enhydra.barracuda.core.forms.validators declared as FormValidator | |
protected FormValidator |
ListValidator.fv
|
static FormValidator |
CardinalityValidator.ONE
|
static FormValidator |
CardinalityValidator.ONE_TO_MANY
|
static FormValidator |
CardinalityValidator.ZERO_TO_MANY
|
static FormValidator |
CardinalityValidator.ZERO_TO_ONE
|
Methods in org.enhydra.barracuda.core.forms.validators that return FormValidator | |
FormValidator |
ListValidator.getSubValidator()
Return the value that is being not'ed |
Constructors in org.enhydra.barracuda.core.forms.validators with parameters of type FormValidator | |
ListValidator(FormValidator ifv)
Public constructor. |
|
ListValidator(FormValidator ifv,
String ierrmsg)
Public constructor. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |