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" />
-
ResetFormInput()
- Constructs a default ResetFormInput object.
-
ResetFormInput(String)
- Constructs a ResetFormInput object with the specified control name.
-
ResetFormInput(String, String)
- Constructs a ResetFormInput object with the specified control name and
initial input value.
-
getTag()
- Returns the tag for the reset form input type.
ResetFormInput
public ResetFormInput()
- Constructs a default ResetFormInput object.
ResetFormInput
public ResetFormInput(String name)
- Constructs a ResetFormInput object with the specified control name.
- Parameters:
- name - The control name of the input field.
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.
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