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.


Variable Index

 o ATTR_NAME
The NAME Attribute.
 o ATTR_SIZE
The SIZE Attribute.
 o ATTR_TYPE
The TYPE Attribute.
 o ATTR_TYPE_HIDDEN
The TYPE Attribute value HIDDEN.
 o ATTR_TYPE_PASSWORD
The TYPE Attribute value PASSWORD.
 o ATTR_TYPE_SUBMIT
The TYPE Attribute value SUBMIT.
 o ATTR_TYPE_TEXT
The TYPE Attribute value TEXT.
 o ATTR_VALUE
The VALUE Attribute.
 o NAME
The element's name.

Constructor Index

 o Input()
Constructs a new, empty input element.
 o Input(String, String, String, String)
Constructs a new, empty input element with the given attributes.

Variables

 o NAME
 public static final String NAME
The element's name.

 o ATTR_TYPE
 public static final String ATTR_TYPE
The TYPE Attribute.

 o ATTR_TYPE_TEXT
 public static final String ATTR_TYPE_TEXT
The TYPE Attribute value TEXT.

 o ATTR_TYPE_PASSWORD
 public static final String ATTR_TYPE_PASSWORD
The TYPE Attribute value PASSWORD.

 o ATTR_TYPE_HIDDEN
 public static final String ATTR_TYPE_HIDDEN
The TYPE Attribute value HIDDEN.

 o ATTR_TYPE_SUBMIT
 public static final String ATTR_TYPE_SUBMIT
The TYPE Attribute value SUBMIT.

 o ATTR_NAME
 public static final String ATTR_NAME
The NAME Attribute.

 o ATTR_VALUE
 public static final String ATTR_VALUE
The VALUE Attribute.

 o ATTR_SIZE
 public static final String ATTR_SIZE
The SIZE Attribute.

Constructors

 o Input
 public Input()
Constructs a new, empty input element.

 o 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