All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.util.html.ResetFormInput

java.lang.Object
   |
   +----com.ibm.as400.util.html.FormInput
           |
           +----com.ibm.as400.util.html.ResetFormInput

public class ResetFormInput
extends FormInput
The ResetFormInput class represents a reset button input type in an HTML form. The trailing slash "/" on the ResetFormInput tag allows it to conform to the XHTML specification.

Here is an example of a ResetFormInput tag:
<input type="reset" value="Reset" />


Constructor Index

 o ResetFormInput()
Constructs a default ResetFormInput object.
 o ResetFormInput(String)
Constructs a ResetFormInput object with the specified control name.
 o ResetFormInput(String, String)
Constructs a ResetFormInput object with the specified control name and initial input value.

Method Index

 o getTag()
Returns the tag for the reset form input type.

Constructors

 o ResetFormInput
 public ResetFormInput()
Constructs a default ResetFormInput object.

 o ResetFormInput
 public ResetFormInput(String name)
Constructs a ResetFormInput object with the specified control name.

Parameters:
name - The control name of the input field.
 o ResetFormInput
 public ResetFormInput(String name,
                       String value)
Constructs a ResetFormInput object with the specified control name and initial input value.

Parameters:
name - The control name of the input field.
value - The input value used when the field is submitted.

Methods

 o getTag
 public String getTag()
Returns the tag for the reset form input type.

Returns:
The tag.
Overrides:
getTag in class FormInput

All Packages  Class Hierarchy  This Package  Previous  Next  Index