|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of FormElement in org.enhydra.barracuda.contrib.dbroggisch.repopulation |
Classes in org.enhydra.barracuda.contrib.dbroggisch.repopulation that implement FormElement | |
class |
CheckboxFormElement
|
class |
GroupFormElement
|
class |
SelectFormElement
Use this FormElement to repopulate the request value into a select box created by the <select>-tag. |
class |
TextAreaFormElement
|
Methods in org.enhydra.barracuda.contrib.dbroggisch.repopulation with parameters of type FormElement | |
void |
SelectFormValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
|
void |
RepopulationFormMap.defineElement(FormElement element)
|
void |
RepopulationFormMap.defineElement(String key,
FormElement element)
|
Uses of FormElement in org.enhydra.barracuda.contrib.sam.data |
Methods in org.enhydra.barracuda.contrib.sam.data with parameters of type FormElement | |
void |
RegexValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure a given pattern is matched Validation is only supported for FormType.STRING |
Uses of FormElement in org.enhydra.barracuda.contrib.sam.xmlform |
Methods in org.enhydra.barracuda.contrib.sam.xmlform that return FormElement | |
protected FormElement |
XmlFormMap.getFormElement(Element ele,
String name)
generate a FormElement for a given Element from the XML description |
Uses of FormElement in org.enhydra.barracuda.core.forms |
Classes in org.enhydra.barracuda.core.forms that implement FormElement | |
class |
DefaultFormElement
A FormElement defines how an element in a FormMap should be mapped to a first class java object. |
Methods in org.enhydra.barracuda.core.forms that return FormElement | |
FormElement |
FormMap.mapElement(String key,
Object origVal)
This allows you to map a single value (as opposed to passing in a whole statemap or request). |
FormElement |
FormMap.mapElement(String key,
Object origVal,
Locale loc)
This allows you to map a single value (as opposed to passing in a whole statemap or request). |
FormElement |
FormMap.getElement(String key)
Get an element by key |
FormElement |
DefaultFormMap.mapElement(String key,
Object origVal)
This allows you to map a single value (as opposed to passing in a whole statemap or request). |
FormElement |
DefaultFormMap.mapElement(String key,
Object origVal,
Locale loc)
This allows you to map a single value (as opposed to passing in a whole statemap or request). |
FormElement |
DefaultFormMap.getElement(String key)
Get an element by key |
Methods in org.enhydra.barracuda.core.forms with parameters of type FormElement | |
void |
Or.validate(FormElement element,
FormMap map,
boolean deferExceptions)
Rather than calling all the sub validate methods, we make sure at least one of the sub-validators is valid |
void |
Not.validate(FormElement element,
FormMap map,
boolean deferExceptions)
Rather than calling all the sub validate methods, we instead validate the validator we contain--because this validator is effectively doing a "NOT", we expect to receive a ValidationException; if we dont, then we will throw a ValidationException |
void |
FormValidator.validate(FormElement element,
FormMap formMap,
boolean deferExceptions)
Validate a FormElement locally and allow any child validators a chance to validate as well. |
boolean |
FormValidator.isNull(Object val,
FormElement element)
Check if val passed is null in a consistant manner. |
void |
FormMap.defineElement(FormElement element)
This defines an element to be mapped by this form, using the key from the FormElement. |
void |
FormMap.defineElement(String key,
FormElement element)
This defines an element to be mapped by this form. |
void |
DefaultFormValidator.validate(FormElement element,
FormMap map,
boolean deferExceptions)
Validate a FormElement locally and allow any child validators a chance to validate as well. |
void |
DefaultFormValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement. |
void |
DefaultFormValidator.validateFormElement(Object val,
FormElement element,
FormMap map,
boolean deferExceptions)
Validate a FormElement. |
void |
DefaultFormMap.defineElement(FormElement element)
This defines an element to be mapped by this form, using the key from the FormElement. |
void |
DefaultFormMap.defineElement(String key,
FormElement element)
This defines an element to be mapped by this form. |
void |
And.validate(FormElement element,
FormMap map,
boolean deferExceptions)
Rather than calling all the sub validate methods, we make sure at least one of the sub-validators is valid |
boolean |
AbstractFormValidator.isNull(Object val,
FormElement element)
Check if val passed is null in a consistant manner. |
Uses of FormElement in org.enhydra.barracuda.core.forms.validators |
Methods in org.enhydra.barracuda.core.forms.validators with parameters of type FormElement | |
void |
ValidTypeValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure that the non-null orig values are valid for the specified element type |
void |
RangeValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make see if the element equals() a given object |
void |
NotNullValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure that it is not Null or blanks. |
void |
MinLengthValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure the length of element is not less than a Min length. |
void |
MaxLengthValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure the length of element does not exceed a Max length. |
void |
ListValidator.validate(FormElement element,
FormMap formMap,
boolean deferExceptions)
Will check origVal's type and loop through all the values calling the subValidator. |
void |
EqualsValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make see if the element equals() a given object |
void |
DigitValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make see if the element equals() a given object |
void |
DateValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure the value is a valid date Validation is not supported for FormType.BOOLEAN FormType,INTEGER FormType.LONG FormType.SHORT FormType.DOUBLE FormType.FLOAT |
void |
DateRangeValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make see if the element equals() a given object |
void |
CardinalityValidator.validateFormElement(Object val,
FormElement element,
boolean deferExceptions)
Validate a FormElement to make sure the number of values is in the specified range |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |