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