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.


Variable Index

 o ATTR_ACTION
The ACTION Attribute.
 o ATTR_METHOD
The METHOD Attribute.
 o ATTR_METHOD_GET
The METHOD Attribute value GET.
 o ATTR_METHOD_POST
The METHOD Attribute value POST.
 o NAME
The element's name.

Constructor Index

 o Form()
Constructs a new, empty form element.
 o Form(String, String)
Constructs a new, empty form element with the given attributes.

Variables

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

 o ATTR_ACTION
 public static final String ATTR_ACTION
The ACTION Attribute.

 o ATTR_METHOD
 public static final String ATTR_METHOD
The METHOD Attribute.

 o ATTR_METHOD_POST
 public static final String ATTR_METHOD_POST
The METHOD Attribute value POST.

 o ATTR_METHOD_GET
 public static final String ATTR_METHOD_GET
The METHOD Attribute value GET.

Constructors

 o Form
 public Form()
Constructs a new, empty form element.

 o 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