|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.ibm.as400.util.html.HTMLTagAttributes
com.ibm.as400.util.html.FormInput
com.ibm.as400.util.html.ToggleFormInput
com.ibm.as400.util.html.CheckboxFormInput
public class CheckboxFormInput extends ToggleFormInput
The CheckboxFormInput class represents a checkbox input type in an HTML form where the checkbox represents an n-of-many choice field. The trailing slash "/" on the CheckboxFormInput tag allows it to conform to the XHTML specification.
Here is an example of a CheckboxFormInput tag:
<input type="checkbox" name="uscitizen" value="yes"
checked="checked" /> textLabel
| Constructor and Description |
|---|
CheckboxFormInput()
Constructs a default CheckboxFormInput object. |
CheckboxFormInput(String label,
boolean checked)
Constructs a CheckboxFormInput object with the specified viewable text label and initial checked value. |
CheckboxFormInput(String name,
String value,
String label,
boolean checked)
Constructs a CheckboxFormInput object with the specified control name, initial input value, viewable text label, and initial checked value. |
| Modifier and Type | Method and Description |
|---|---|
String |
getFOTag()
Returns a comment tag. |
String |
getTag()
Returns the tag for the checkbox form input type. |
| Methods inherited from class com.ibm.as400.util.html.ToggleFormInput |
|---|
getLabel, isChecked, setChecked, setLabel |
| 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 |
|---|
public CheckboxFormInput()
public CheckboxFormInput(String label,
boolean checked)
label - The viewable text label.checked - If the checkbox initializes to checked.
public CheckboxFormInput(String name,
String value,
String label,
boolean checked)
name - The control name of the input field.value - The input value used when the field is submitted.label - The viewable text label.checked - If the checkbox initializes to checked.| Method Detail |
|---|
public String getFOTag()
public String getTag()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||