Methods Summary |
---|
public java.lang.String | getAcceptCharset()List of character sets supported by the server. See the
accept-charset attribute definition in HTML 4.0.
|
public java.lang.String | getAction()Server-side form handler. See the action attribute definition in HTML
4.0.
|
public org.w3c.dom.html.HTMLCollection | getElements()Returns a collection of all control elements in the form.
|
public java.lang.String | getEnctype()The content type of the submitted form, generally
"application/x-www-form-urlencoded". See the enctype attribute
definition in HTML 4.0.
|
public int | getLength()The number of form controls in the form.
|
public java.lang.String | getMethod()HTTP method used to submit form. See the method attribute definition
in HTML 4.0.
|
public java.lang.String | getName()Names the form.
|
public java.lang.String | getTarget()Frame to render the resource in. See the target attribute definition
in HTML 4.0.
|
public void | reset()Restores a form element's default values. It performs the same action
as a reset button.
|
public void | setAcceptCharset(java.lang.String acceptCharset)
|
public void | setAction(java.lang.String action)
|
public void | setEnctype(java.lang.String enctype)
|
public void | setMethod(java.lang.String method)
|
public void | setName(java.lang.String name)
|
public void | setTarget(java.lang.String target)
|
public void | submit()Submits the form. It performs the same action as a submit button.
|