|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.ecs.GenericElement
org.apache.ecs.ElementAttributes
org.apache.ecs.ConcreteElement
org.apache.ecs.MultiPartElement
org.apache.ecs.xhtml.option
public class option
This class creates a <option> tag. The option tag defaults to not having a closing </option> because it is optional in the spec. This can be overridden by setNeedClosingTag(true)
| Field Summary |
|---|
| Fields inherited from class org.apache.ecs.GenericElement |
|---|
tabLevel |
| Fields inherited from interface org.apache.ecs.Attributes |
|---|
NO_ATTRIBUTE_VALUE |
| Fields inherited from interface org.apache.ecs.Element |
|---|
CENTER, LEFT, LOWERCASE, MIXEDCASE, RIGHT, UPPERCASE |
| Constructor Summary | |
|---|---|
option()
Basic constructor. |
|
option(java.lang.String value)
Basic constructor. |
|
option(java.lang.String label,
double value)
Basic constructor. |
|
option(java.lang.String label,
int value)
Basic constructor. |
|
option(java.lang.String label,
java.lang.String value)
Basic constructor. |
|
| Method Summary | |
|---|---|
option |
addElement(Element element)
Adds an Element to the element. |
option |
addElement(java.lang.String element)
Adds an Element to the element. |
option[] |
addElement(java.lang.String[] element)
Creates a group of options. |
option |
addElement(java.lang.String hashcode,
Element element)
Adds an Element to the element. |
option |
addElement(java.lang.String hashcode,
java.lang.String element)
Adds an Element to the element. |
option |
removeElement(java.lang.String hashcode)
Removes an Element from the element. |
option |
setDisabled(boolean disabled)
Sets the disabled value |
option |
setLabel(java.lang.String label)
Sets the label="" attribute |
Element |
setLang(java.lang.String lang)
Sets the lang="" and xml:lang="" attributes |
void |
setOnBlur(java.lang.String script)
The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. |
void |
setOnChange(java.lang.String script)
The onchange event occurs when a control loses the input focus and its value has been modified since gaining focus. |
void |
setOnClick(java.lang.String script)
The onclick event occurs when the pointing device button is clicked over an element. |
void |
setOnDblClick(java.lang.String script)
The ondblclick event occurs when the pointing device button is double clicked over an element. |
void |
setOnFocus(java.lang.String script)
The onfocus event occurs when an element receives focus either by the pointing device or by tabbing navigation. |
void |
setOnKeyDown(java.lang.String script)
The onkeydown event occurs when a key is pressed down over an element. |
void |
setOnKeyPress(java.lang.String script)
The onkeypress event occurs when a key is pressed and released over an element. |
void |
setOnKeyUp(java.lang.String script)
The onkeyup event occurs when a key is released over an element. |
void |
setOnMouseDown(java.lang.String script)
The onmousedown event occurs when the pointing device button is pressed over an element. |
void |
setOnMouseMove(java.lang.String script)
The onmousemove event occurs when the pointing device is moved while it is over an element. |
void |
setOnMouseOut(java.lang.String script)
The onmouseout event occurs when the pointing device is moved away from an element. |
void |
setOnMouseOver(java.lang.String script)
The onmouseover event occurs when the pointing device is moved onto an element. |
void |
setOnMouseUp(java.lang.String script)
The onmouseup event occurs when the pointing device button is released over an element. |
void |
setOnReset(java.lang.String script)
The onreset event occurs when a form is reset. |
void |
setOnSelect(java.lang.String script)
The onselect event occurs when a user selects some text in a text field. |
void |
setOnSubmit(java.lang.String script)
The onsubmit event occurs when a form is submitted. |
option |
setSelected(boolean selected)
Sets the selected value |
option |
setValue(double value)
Sets the value="" attribute |
option |
setValue(int value)
Sets the value="" attribute |
option |
setValue(java.lang.String value)
Sets the value="" attribute |
| Methods inherited from class org.apache.ecs.ConcreteElement |
|---|
addElementToRegistry, addElementToRegistry, addElementToRegistry, addElementToRegistry, addElementToRegistry, addElementToRegistry, addElementToRegistry, addElementToRegistry, clone, elements, getElement, isEmpty, keys, output, output, output, output, registryHasElement, registryHasElement, removeElementFromRegistry, removeElementFromRegistry |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public option()
public option(java.lang.String value)
value - sets the attribute value=""
public option(java.lang.String label,
java.lang.String value)
label - sets the attribute label=""value - sets the attribute value=""
public option(java.lang.String label,
int value)
label - sets the attribute label=""value - sets the attribute value=""
public option(java.lang.String label,
double value)
label - sets the attribute label=""value - sets the attribute value=""| Method Detail |
|---|
public option setLabel(java.lang.String label)
label - the label="" attributepublic option setValue(java.lang.String value)
value - the value="" attributepublic option setValue(int value)
value - the value="" attributepublic option setValue(double value)
value - the value="" attributepublic option setSelected(boolean selected)
selected - true or falsepublic option setDisabled(boolean disabled)
disabled - true or falsepublic Element setLang(java.lang.String lang)
setLang in class ElementAttributeslang - the lang="" and xml:lang="" attributes
public option addElement(java.lang.String hashcode,
Element element)
hashcode - name of element for hash tableelement - Adds an Element to the element.
public option addElement(java.lang.String hashcode,
java.lang.String element)
hashcode - name of element for hash tableelement - Adds an Element to the element.public option addElement(Element element)
element - Adds an Element to the element.public option addElement(java.lang.String element)
element - Adds an Element to the element.public option[] addElement(java.lang.String[] element)
Creates - a group of options.public option removeElement(java.lang.String hashcode)
hashcode - the name of the element to be removed.public void setOnFocus(java.lang.String script)
setOnFocus in interface FocusEventsThe - scriptpublic void setOnBlur(java.lang.String script)
setOnBlur in interface FocusEventsThe - scriptpublic void setOnSubmit(java.lang.String script)
setOnSubmit in interface FormEventsThe - scriptpublic void setOnReset(java.lang.String script)
setOnReset in interface FormEventsThe - scriptpublic void setOnSelect(java.lang.String script)
setOnSelect in interface FormEventsThe - scriptpublic void setOnChange(java.lang.String script)
setOnChange in interface FormEventsThe - scriptpublic void setOnClick(java.lang.String script)
setOnClick in interface MouseEventsThe - scriptpublic void setOnDblClick(java.lang.String script)
setOnDblClick in interface MouseEventsThe - scriptpublic void setOnMouseDown(java.lang.String script)
setOnMouseDown in interface MouseEventsThe - scriptpublic void setOnMouseUp(java.lang.String script)
setOnMouseUp in interface MouseEventsThe - scriptpublic void setOnMouseOver(java.lang.String script)
setOnMouseOver in interface MouseEventsThe - scriptpublic void setOnMouseMove(java.lang.String script)
setOnMouseMove in interface MouseEventsThe - scriptpublic void setOnMouseOut(java.lang.String script)
setOnMouseOut in interface MouseEventsThe - scriptpublic void setOnKeyPress(java.lang.String script)
setOnKeyPress in interface KeyEventsThe - scriptpublic void setOnKeyDown(java.lang.String script)
setOnKeyDown in interface KeyEventsThe - scriptpublic void setOnKeyUp(java.lang.String script)
setOnKeyUp in interface KeyEventsThe - script
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||