com.ibm.as400.util.html
Class SubmitFormInput

java.lang.Object
  extended by com.ibm.as400.util.html.HTMLTagAttributes
      extended by com.ibm.as400.util.html.FormInput
          extended by com.ibm.as400.util.html.SubmitFormInput
All Implemented Interfaces:
HTMLTagElement, Serializable

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" />

See Also:
Serialized Form

Constructor Summary
Constructor and Description
SubmitFormInput()
          Constructs a default SubmitFormInput object.
SubmitFormInput(String name)
          Constructs a SubmitFormInput object with the specified control name.
SubmitFormInput(String name, String value)
          Constructs a SubmitFormInput object with the specified control name and initial input value.
 
Method Summary
Modifier and Type Method and Description
 String getFOTag()
          Returns a comment tag.
 String getTag()
          Returns the tag for the submit form input type.
 
Methods inherited from class com.ibm.as400.util.html.FormInput
addVetoableChangeListener, getDirection, getLanguage, getName, getSize, getValue, removeVetoableChangeListener, setDirection, setLanguage, setName, setSize, setValue, toString
 
Methods inherited from class com.ibm.as400.util.html.HTMLTagAttributes
addPropertyChangeListener, getAttributes, getAttributeString, removePropertyChangeListener, setAttributes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SubmitFormInput

public SubmitFormInput()
Constructs a default SubmitFormInput object.


SubmitFormInput

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

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

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.
Method Detail

getFOTag

public String getFOTag()
Returns a comment tag. This method should not be called. There is no XSL-FO support for this class.

Returns:
The comment tag.

getTag

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

Returns:
The tag.