NodeList
interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
More...
#include <dom_node.h>
Public Methods | |
NodeList () | |
NodeList (const NodeList &other) | |
NodeList & | operator= (const NodeList &other) |
~NodeList () | |
unsigned long | length () const |
Node | item (unsigned long index) const |
NodeListImpl * | handle () const |
bool | isNull () const |
Protected Methods | |
NodeList (const NodeListImpl *i) | |
Protected Attributes | |
NodeListImpl * | impl |
Friends | |
class | Element |
class | Node |
class | Document |
class | HTMLDocument |
class | KJS::HTMLDocument |
NodeList
interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
The items in the NodeList
are accessible via an integral index, starting from 0.
|
|
|
|
|
|
|
|
|
|
|
The number of nodes in the list.
The range of valid child node indices is 0 to |
|
Returns the
If
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|