Used to traverse childs of a node.
org.w3c.dom.NodeList is a live
list, meaning that any change to the node is reflected in this list and vice
versa.
The functionality of NodeList is implemented in
NodeImpl itself
using a double-linked list. This class is only provided to hide the
interface of
NodeImpl .
This class is not entirely thread-safe due to thread-safe limitations on
NodeImpl itself.
version: $Revision: 1.1 $ $Date: 2001/12/18 11:03:24 $ author: Assaf Arkin See Also: NodeImpl |