public class SubmitFormInput extends FormInput
Here is an example of a SubmitFormInput tag:
<input type="submit" value="Send" />
Constructor and Description |
---|
SubmitFormInput()
Constructs a default SubmitFormInput object.
|
SubmitFormInput(java.lang.String name)
Constructs a SubmitFormInput object with the specified control name.
|
SubmitFormInput(java.lang.String name,
java.lang.String value)
Constructs a SubmitFormInput 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 submit form input type.
|
addVetoableChangeListener, getDirection, getLanguage, getName, getSize, getValue, removeVetoableChangeListener, setDirection, setLanguage, setName, setSize, setValue, toString
addPropertyChangeListener, getAttributes, getAttributeString, removePropertyChangeListener, setAttributes
public SubmitFormInput()
public SubmitFormInput(java.lang.String name)
name
- The control name of the input field.public SubmitFormInput(java.lang.String name, java.lang.String value)
name
- The control name of the input field.value
- The input value used when the field is submitted.