org.apache.html.dom
public class HTMLSelectElementImpl extends HTMLElementImpl implements HTMLSelectElement, HTMLFormControl
Version: $Revision: 1.11 $ $Date: 2005/04/18 01:12:37 $
See Also: org.w3c.dom.html.HTMLSelectElement org.apache.xerces.dom.ElementImpl
UNKNOWN:
| Constructor Summary | |
|---|---|
| HTMLSelectElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.
| |
| Method Summary | |
|---|---|
| void | add(HTMLElement element, HTMLElement before) |
| void | blur() |
| Node | cloneNode(boolean deep)
Explicit implementation of cloneNode() to ensure that cache used
for getOptions() gets cleared. |
| void | focus() |
| NodeList | getChildNodes()
Explicit implementation of getChildNodes() to avoid problems with
overriding the getLength() method hidden in the super class. |
| boolean | getDisabled() |
| int | getLength() |
| boolean | getMultiple() |
| String | getName() |
| HTMLCollection | getOptions() |
| int | getSelectedIndex() |
| int | getSize() |
| int | getTabIndex() |
| String | getType() |
| String | getValue() |
| void | remove(int index) |
| void | setDisabled(boolean disabled) |
| void | setMultiple(boolean multiple) |
| void | setName(String name) |
| void | setSelectedIndex(int selectedIndex) |
| void | setSize(int size) |
| void | setTabIndex(int tabIndex) |
| void | setValue(String value) |
Parameters: owner The owner HTML document