All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.util.html.HiddenFormInput

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

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

Here is an example of a HiddenFormInput tag:
<input type="hidden" name="account" value="123456" />


Constructor Index

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

Method Index

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

Constructors

 o HiddenFormInput
 public HiddenFormInput()
Constructs a HiddenFormInput object.

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

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

Parameters:
name - The control name of the input field.
value - The initial value of the input field.

Methods

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

Returns:
The tag.
Overrides:
getTag in class FormInput

All Packages  Class Hierarchy  This Package  Previous  Next  Index