|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NodeList | |
---|---|
org.eclipse.ercp.xml.dom | |
org.w3c.dom |
Uses of NodeList in org.eclipse.ercp.xml.dom |
---|
Classes in org.eclipse.ercp.xml.dom that implement NodeList | |
---|---|
class |
AttrImpl
|
class |
CDATASectionImpl
|
class |
CharacterDataImpl
|
class |
DocumentImpl
|
class |
ElementImpl
|
class |
NodeImpl
|
class |
NodeListImpl
|
class |
NSNodeImpl
Implement namespaces needs |
class |
ProcessingInstructionImpl
|
class |
TextImpl
|
class |
TreeNode
Support previous and next siblings |
Methods in org.eclipse.ercp.xml.dom that return NodeList | |
---|---|
NodeList |
NodeImpl.getChildNodes()
A NodeList that contains all children of this node. |
NodeList |
TreeNode.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 |
TreeNode.getElementsByTagNameNS(java.lang.String namespaceURI,
java.lang.String localName)
Returns a NodeList of all the descendant
Elements with a given local name and namespace URI in
the order in which they are encountered in a preorder traversal of
this Element tree. |
Uses of NodeList in org.w3c.dom |
---|
Methods in org.w3c.dom that return NodeList | |
---|---|
NodeList |
Node.getChildNodes()
A NodeList that contains all children of this node. |
NodeList |
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 |
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.getElementsByTagNameNS(java.lang.String namespaceURI,
java.lang.String localName)
Returns a NodeList of all the descendant
Elements with a given local name and namespace URI in
the order in which they are encountered in a preorder traversal of
this Element tree. |
NodeList |
Document.getElementsByTagNameNS(java.lang.String namespaceURI,
java.lang.String localName)
Returns a NodeList of all the Elements with a
given local name and namespace URI in the order in which they are
encountered in a preorder traversal of the Document tree. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |