Package | Description |
---|---|
org.apache.commons.validator |
The Validator package provides validation for JavaBeans based on an xml file.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.String,Form> |
FormSet.forms
A
Map of Form s using the name field of the
Form as the key. |
Modifier and Type | Method and Description |
---|---|
Form |
ValidatorResources.getForm(java.util.Locale locale,
java.lang.String formKey)
Gets a
Form based on the name of the form and the
Locale that most closely matches the Locale
passed in. |
Form |
FormSet.getForm(java.lang.String formName)
Retrieve a
Form based on the form name. |
Form |
ValidatorResources.getForm(java.lang.String language,
java.lang.String country,
java.lang.String variant,
java.lang.String formKey)
Gets a
Form based on the name of the form and the
Locale that most closely matches the Locale
passed in. |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,Form> |
FormSet.getForms()
A
Map of Form s is returned as an unmodifiable
Map with the key based on the form name. |
Modifier and Type | Method and Description |
---|---|
void |
FormSet.addForm(Form f)
Add a
Form to the FormSet . |
protected void |
Form.merge(Form depends)
Merges the given form into this one.
|
Modifier and Type | Method and Description |
---|---|
protected void |
Form.process(java.util.Map<java.lang.String,java.lang.String> globalConstants,
java.util.Map<java.lang.String,java.lang.String> constants,
java.util.Map<java.lang.String,Form> forms)
Processes all of the
Form 's Field s. |