All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.util.html.SubmitFormInput

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

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

Here is an example of a SubmitFormInput tag:
<input type="submit" value="Send" />


Constructor Index

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

Method Index

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

Constructors

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

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

Parameters:
name - The control name of the input field.
 o SubmitFormInput
 public SubmitFormInput(String name,
                        String value)
Constructs a SubmitFormInput 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 submit form input type.

Returns:
The tag.
Overrides:
getTag in class FormInput

All Packages  Class Hierarchy  This Package  Previous  Next  Index