All Packages Class Hierarchy This Package Previous Next Index
Class vnet.markup.html.Form
java.lang.Object
|
+----vnet.markup.Element
|
+----vnet.markup.html.Form
- public class Form
- extends Element
The form Element in an HTML document.
-
ATTR_ACTION
- The ACTION Attribute.
-
ATTR_METHOD
- The METHOD Attribute.
-
ATTR_METHOD_GET
- The METHOD Attribute value GET.
-
ATTR_METHOD_POST
- The METHOD Attribute value POST.
-
NAME
- The element's name.
-
Form()
- Constructs a new, empty form element.
-
Form(String, String)
- Constructs a new, empty form element with the given attributes.
NAME
public static final String NAME
- The element's name.
ATTR_ACTION
public static final String ATTR_ACTION
- The ACTION Attribute.
ATTR_METHOD
public static final String ATTR_METHOD
- The METHOD Attribute.
ATTR_METHOD_POST
public static final String ATTR_METHOD_POST
- The METHOD Attribute value POST.
ATTR_METHOD_GET
public static final String ATTR_METHOD_GET
- The METHOD Attribute value GET.
Form
public Form()
- Constructs a new, empty form element.
Form
public Form(String action,
String method)
- Constructs a new, empty form element with the given attributes.
- Parameters:
- action - the submit action's URI
- method - submission HTTP method
All Packages Class Hierarchy This Package Previous Next Index