All Packages Class Hierarchy This Package Previous Next Index
Class vnet.markup.html.Input
java.lang.Object
|
+----vnet.markup.Element
|
+----vnet.markup.html.Input
- public class Input
- extends Element
The input Element in an HTML form.
-
ATTR_NAME
- The NAME Attribute.
-
ATTR_SIZE
- The SIZE Attribute.
-
ATTR_TYPE
- The TYPE Attribute.
-
ATTR_TYPE_HIDDEN
- The TYPE Attribute value HIDDEN.
-
ATTR_TYPE_PASSWORD
- The TYPE Attribute value PASSWORD.
-
ATTR_TYPE_SUBMIT
- The TYPE Attribute value SUBMIT.
-
ATTR_TYPE_TEXT
- The TYPE Attribute value TEXT.
-
ATTR_VALUE
- The VALUE Attribute.
-
NAME
- The element's name.
-
Input()
- Constructs a new, empty input element.
-
Input(String, String, String, String)
- Constructs a new, empty input element with the given attributes.
NAME
public static final String NAME
- The element's name.
ATTR_TYPE
public static final String ATTR_TYPE
- The TYPE Attribute.
ATTR_TYPE_TEXT
public static final String ATTR_TYPE_TEXT
- The TYPE Attribute value TEXT.
ATTR_TYPE_PASSWORD
public static final String ATTR_TYPE_PASSWORD
- The TYPE Attribute value PASSWORD.
ATTR_TYPE_HIDDEN
public static final String ATTR_TYPE_HIDDEN
- The TYPE Attribute value HIDDEN.
ATTR_TYPE_SUBMIT
public static final String ATTR_TYPE_SUBMIT
- The TYPE Attribute value SUBMIT.
ATTR_NAME
public static final String ATTR_NAME
- The NAME Attribute.
ATTR_VALUE
public static final String ATTR_VALUE
- The VALUE Attribute.
ATTR_SIZE
public static final String ATTR_SIZE
- The SIZE Attribute.
Input
public Input()
- Constructs a new, empty input element.
Input
public Input(String type,
String name,
String value,
String size)
- Constructs a new, empty input element with the given attributes.
- Parameters:
- type - type of input
- name - the input's name
- value - value of input
- size - input size
All Packages Class Hierarchy This Package Previous Next Index