|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.lobobrowser.js.AbstractScriptableDelegate
org.lobobrowser.html.domimpl.NodeImpl
org.lobobrowser.html.domimpl.ElementImpl
org.lobobrowser.html.domimpl.HTMLElementImpl
org.lobobrowser.html.domimpl.HTMLAbstractUIElement
org.lobobrowser.html.domimpl.HTMLBaseInputElement
org.lobobrowser.html.domimpl.HTMLSelectElementImpl
public class HTMLSelectElementImpl
| Field Summary |
|---|
| Fields inherited from class org.lobobrowser.html.domimpl.HTMLBaseInputElement |
|---|
deferredValue, inputContext |
| Fields inherited from class org.lobobrowser.html.domimpl.ElementImpl |
|---|
attributes |
| Fields inherited from class org.lobobrowser.html.domimpl.NodeImpl |
|---|
document, logger, nodeList, notificationsSuspended, parentNode, treeLock, uiNode |
| Fields inherited from interface org.w3c.dom.Node |
|---|
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
| Constructor Summary | |
|---|---|
HTMLSelectElementImpl(java.lang.String name)
|
|
| Method Summary | |
|---|---|
void |
add(HTMLElement element,
HTMLElement before)
Add a new element to the collection of OPTION elements for
this SELECT. |
protected FormInput[] |
getFormInputs()
Gets form input due to the current element. |
int |
getLength()
The number of options in this SELECT. |
boolean |
getMultiple()
If true, multiple OPTION elements may be selected in this
SELECT. |
org.mozilla.javascript.Function |
getOnchange()
|
HTMLOptionsCollection |
getOptions()
The collection of OPTION elements contained by this
element. |
int |
getSelectedIndex()
The ordinal index of the selected option, starting from 0. |
int |
getSize()
Number of visible rows. |
java.lang.String |
getType()
The type of this form control. |
void |
remove(int index)
Remove an element from the collection of OPTION elements
for this SELECT. |
void |
resetInput()
|
void |
setInputContext(InputContext ic)
|
void |
setLength(int length)
The number of options in this SELECT. |
void |
setMultiple(boolean multiple)
If true, multiple OPTION elements may be selected in this
SELECT. |
void |
setOnchange(org.mozilla.javascript.Function value)
|
void |
setSelectedIndex(int selectedIndex)
The ordinal index of the selected option, starting from 0. |
void |
setSize(int size)
Number of visible rows. |
| Methods inherited from class org.lobobrowser.html.domimpl.HTMLBaseInputElement |
|---|
addImageListener, assignAttributeField, blur, focus, getAccept, getAccessKey, getAlign, getAlt, getDefaultValue, getDisabled, getFileValue, getForm, getImage, getName, getOnload, getReadOnly, getTabIndex, getValue, removeImageListener, resetForm, select, setAccept, setAccessKey, setAlign, setAlt, setDefaultValue, setDisabled, setName, setOnload, setReadOnly, setTabIndex, setValue, submitForm |
| Methods inherited from class org.lobobrowser.html.domimpl.HTMLAbstractUIElement |
|---|
getEventFunction, getOnblur, getOnclick, getOncontextmenu, getOndblclick, getOnfocus, getOnkeydown, getOnkeypress, getOnkeyup, getOnmousedown, getOnmousemove, getOnmouseout, getOnmouseover, getOnmouseup, setOnblur, setOnclick, setOncontextmenu, setOndblclick, setOnfocus, setOnkeydown, setOnkeypress, setOnkeyup, setOnmousedown, setOnmousemove, setOnmouseout, setOnmouseover, setOnmouseup |
| Methods inherited from class org.lobobrowser.js.AbstractScriptableDelegate |
|---|
getScriptable, setScriptable |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.html2.HTMLSelectElement |
|---|
blur, focus, getDisabled, getForm, getName, getTabIndex, getValue, setDisabled, setName, setTabIndex, setValue |
| Methods inherited from interface org.w3c.dom.html2.HTMLElement |
|---|
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle |
| Methods inherited from interface org.w3c.dom.Element |
|---|
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS |
| Methods inherited from interface org.w3c.dom.Node |
|---|
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData |
| Methods inherited from interface org.lobobrowser.html.style.CSS2PropertiesContext |
|---|
informLayoutInvalid, informLookInvalid, informPositionInvalid, informSizeInvalid |
| Constructor Detail |
|---|
public HTMLSelectElementImpl(java.lang.String name)
| Method Detail |
|---|
public void add(HTMLElement element,
HTMLElement before)
throws org.w3c.dom.DOMException
HTMLSelectElementOPTION elements for
this SELECT. This method is the equivalent of the
appendChild method of the Node interface if
the before parameter is null. It is
equivalent to the insertBefore method on the parent of
before in all other cases. This method may have no
effect if the new element is not an OPTION or an
OPTGROUP.
add in interface HTMLSelectElementelement - The element to add.before - The element to insert before, or null for
the tail of the list.
org.w3c.dom.DOMException - NOT_FOUND_ERR: Raised if before is not a descendant of
the SELECT element.public int getLength()
HTMLSelectElementSELECT.
getLength in interface HTMLSelectElementpublic boolean getMultiple()
HTMLSelectElementOPTION elements may be selected in this
SELECT. See the multiple attribute definition in HTML
4.01.
getMultiple in interface HTMLSelectElementpublic HTMLOptionsCollection getOptions()
HTMLSelectElementOPTION elements contained by this
element.
getOptions in interface HTMLSelectElementpublic int getSelectedIndex()
HTMLSelectElement
getSelectedIndex in interface HTMLSelectElementpublic int getSize()
HTMLSelectElement
getSize in interface HTMLSelectElementpublic java.lang.String getType()
HTMLSelectElementtrue and the string
"select-one" when false.
getType in interface HTMLSelectElementpublic void remove(int index)
HTMLSelectElementOPTION elements
for this SELECT. Does nothing if no element has the
given index.
remove in interface HTMLSelectElementindex - The index of the item to remove, starting from 0.
public void setLength(int length)
throws org.w3c.dom.DOMException
HTMLSelectElementSELECT.
setLength in interface HTMLSelectElementorg.w3c.dom.DOMException - NOT_SUPPORTED_ERR: if setting the length is not allowed by the
implementation.public void setMultiple(boolean multiple)
HTMLSelectElementOPTION elements may be selected in this
SELECT. See the multiple attribute definition in HTML
4.01.
setMultiple in interface HTMLSelectElementpublic void setSelectedIndex(int selectedIndex)
HTMLSelectElement
setSelectedIndex in interface HTMLSelectElementpublic void setSize(int size)
HTMLSelectElement
setSize in interface HTMLSelectElementprotected FormInput[] getFormInputs()
HTMLElementImplnull except when the element is a form input element.
getFormInputs in class HTMLElementImplpublic void resetInput()
public void setInputContext(InputContext ic)
setInputContext in class HTMLBaseInputElementpublic org.mozilla.javascript.Function getOnchange()
public void setOnchange(org.mozilla.javascript.Function value)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||