public class HiddenFormInput extends FormInput
Here is an example of a HiddenFormInput tag:
<input type="hidden" name="account" value="123456" />
Constructor and Description |
---|
HiddenFormInput()
Constructs a HiddenFormInput object.
|
HiddenFormInput(java.lang.String name)
Constructs a HiddenFormInput object with the specified control name.
|
HiddenFormInput(java.lang.String name,
java.lang.String value)
Constructs a HiddenFormInput object with the specified control name and
initial input value.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getFOTag()
Returns a comment tag.
|
java.lang.String |
getTag()
Returns the tag for the hidden form input type.
|
addVetoableChangeListener, getDirection, getLanguage, getName, getSize, getValue, removeVetoableChangeListener, setDirection, setLanguage, setName, setSize, setValue, toString
addPropertyChangeListener, getAttributes, getAttributeString, removePropertyChangeListener, setAttributes
public HiddenFormInput()
public HiddenFormInput(java.lang.String name)
name
- The control name of the input field.public HiddenFormInput(java.lang.String name, java.lang.String value)
name
- The control name of the input field.value
- The initial value of the input field.