All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.util.html.PasswordFormInput

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

public class PasswordFormInput
extends TextFormInput
The PasswordFormInput class represents a password input field type in an HTML form. The trailing slash "/" on the PasswordFormInput tag allows it to conform to the XHTML specification.

Here is an example of a PasswordFormInput tag:
<input type="password" name="password" size="12" />


Constructor Index

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

Method Index

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

Constructors

 o PasswordFormInput
 public PasswordFormInput()
Constructs a default PasswordFormInput object.

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

Parameters:
name - The control name of the input field.
 o PasswordFormInput
 public PasswordFormInput(String name,
                          String value)
Constructs a PasswordFormInput 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 password form input type.

Returns:
The tag.
Overrides:
getTag in class TextFormInput

All Packages  Class Hierarchy  This Package  Previous  Next  Index