Package | Description |
---|---|
fc.web.forms |
Encapsulates HTML forms as java objects (Usage Diagram [in new window], Class Hierarchy Diagram).
|
Modifier and Type | Class and Description |
---|---|
class |
MaxSizable
Represents an HTML field that accepts a 'maxlength' html
attribute
|
class |
Password
Encapsulates a password field.
|
class |
Text
Represents an HTML text field
|
class |
TextArea
A HTML TextArea
|
Constructor and Description |
---|
VDate(AbstractText field,
String errorMessage) |
VEmail(AbstractText field,
String errorMessage)
Constructs a new email validator that does not allow empty
email address as valid
|
VEmail(AbstractText field,
String errorMessage,
boolean allowEmpty)
Constructs a new email validator that allows an empty email
address as valid if the allowEmpty argument is
true.
|
VText(AbstractText field,
String errorMessage)
Creates a new validator that by default only fails validation if the
field's value is empty, that is to say, it's not filled by the user or is
filled only with spaces (since spaces are removed before validation).
|
VTime(AbstractText field,
String errorMessage) |