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