|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--com.raj.htmlForms.HtmlFormElement
|
+--com.raj.htmlForms.HtmlInput
|
+--com.raj.htmlForms.HtmlTextBoxes
|
+--com.raj.htmlForms.HtmlPassword
This class will generate an HTML password box. It will write out something like:
<input type=\"password\" name=\"somename\">
depending on the attributes set in this class. This class implements all the HTML 4.01 Transitional attributes of a password field.
This class (HtmlPassword.java) is part of the com.raj.htmlForms package that
automatically generates HTML forms programmatically.
CREATED 25-FEB-2002, Copyright (c) Rajnish Bhaskar 2002
| Field Summary |
| Fields inherited from class com.raj.htmlForms.HtmlFormElement |
isXHTML, out |
| Constructor Summary | |
HtmlPassword(java.io.Writer w)
Minimal constructor for any form element. |
|
HtmlPassword(java.io.Writer w,
boolean x,
java.lang.String n)
Constructor that sets the writer, name and a boolean which determines whether or not XHTML will be written |
|
HtmlPassword(java.io.Writer w,
java.lang.String n)
Constructor that just sets the name of the element |
|
HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val)
Constructor that sets the name and value of the element |
|
HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val,
int s)
Constructor that sets the name, value and size of the element |
|
HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val,
int s,
int ml)
constructor with the name, value size and maximum length of a control |
|
| Method Summary | |
void |
write()
write a password field with all the fields that have been set also printed |
| Methods inherited from class com.raj.htmlForms.HtmlTextBoxes |
getMaxLength, reset, setMaxLength, toString |
| Methods inherited from class com.raj.htmlForms.HtmlInput |
getAccessKey, getDisabled, getReadOnly, getSize, getValue, isDisabled, setAccessKey, setReadOnly, setSize, setValue |
| Methods inherited from class com.raj.htmlForms.HtmlFormElement |
getDir, getId, getLang, getName, getOnBlur, getOnClick, getOnDblClick, getOnFocus, getOnKeyDown, getOnKeyPress, getOnKeyUp, getOnMouseDown, getOnMouseMove, getOnMouseOut, getOnMouseOver, getOnMouseUp, getOnSelect, getStyle, getTabIndex, getTheClass, getTitle, getXhtml, setDir, setId, setLang, setName, setOnBlur, setOnClick, setOnDblClick, setOnFocus, setOnKeyDown, setOnKeyPress, setOnKeyUp, setOnMouseDown, setOnMouseMove, setOnMouseOut, setOnMouseOver, setOnMouseUp, setOnSelect, setStyle, setStyle, setTabIndex, setTheClass, setTitle, setXhtml |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public HtmlPassword(java.io.Writer w)
foo becomes setFoo(). The attribute names can be
found at the W3C HTML reference or many other places on the web.
w - the Writer to which all the data will be written out
public HtmlPassword(java.io.Writer w,
boolean x,
java.lang.String n)
w - the Writer to which all the data will be written outn - the name of this elementx - if true, XHTML will be written, else false
public HtmlPassword(java.io.Writer w,
java.lang.String n)
w - the Writer to which all the data will be written outn - the name of this element
public HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val)
w - the Writer to which all the data will be written outn - the name of this elementval - the initial value of this control
public HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val,
int s)
w - the Writer to which all the data will be written outn - the name of this elementval - the initial value of this controls - the initial width of the control
public HtmlPassword(java.io.Writer w,
java.lang.String n,
java.lang.String val,
int s,
int ml)
w - the Writer to which all the data will be written outn - the name of this elementval - the initial value of this controls - the initial width of the controlml - the maximum amount of text that can be entered (in characters)| Method Detail |
public void write()
write in class HtmlFormElement
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||