NodeList<AreaElement> |
MapElement.getAreas() |
The list of areas defined for the image map.
|
NodeList<TableCellElement> |
TableRowElement.getCells() |
The collection of cells in this row.
|
NodeList<Node> |
Node.getChildNodes() |
A NodeList that contains all children of this node.
|
NodeList<Element> |
Document.getElementsByTagName(java.lang.String tagName) |
Returns a NodeList of all the Elements with a given
tag name in the order in which they are encountered in a preorder traversal
of the document tree.
|
NodeList<Element> |
Element.getElementsByTagName(java.lang.String name) |
Returns a NodeList of all descendant Elements with a given tag name, in the
order in which they are encountered in a preorder traversal of this Element
tree.
|
NodeList<OptionElement> |
SelectElement.getOptions() |
The collection of OPTION elements contained by this element.
|
NodeList<TableRowElement> |
TableElement.getRows() |
Returns a collection of all the rows in the table, including all in THEAD,
TFOOT, all TBODY elements.
|
NodeList<TableRowElement> |
TableSectionElement.getRows() |
The collection of rows in this table section.
|
NodeList<TableSectionElement> |
TableElement.getTBodies() |
Returns a collection of the table bodies (including implicit ones).
|
NodeList<OptionElement> |
DOMImpl.selectGetOptions(SelectElement select) |
|