|  | 
Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members 
 DOMNodeList  Class ReferenceTheDOMNodeListinterface provides the abstraction of an ordered collection of nodes. 
More...
List of all members. 
 Detailed DescriptionTheDOMNodeListinterface provides the abstraction of an ordered collection of nodes.
DOMNodeLists are created by DOMDocument::getElementsByTagName(), DOMNode::getChildNodes(),
 
 
The items in the DOMNodeListare accessible via an integral index, starting from 0. 
DOMNodeLists are "live", in that any changes to the document tree are immediately reflected in any DOMNodeLists that may have been created for that tree. 
 
 
 Constructor & Destructor Documentation
 
  
    | 
        
          | DOMNodeList::DOMNodeList | ( |  | ) |  [protected] |  |  
 
  
    | 
        
          | virtual DOMNodeList::~DOMNodeList | ( |  | ) |  [virtual] |  |  
 Member Function Documentation
 
  
    | 
        
          | virtual XMLSize_t DOMNodeList::getLength | ( |  | ) | const  [pure virtual] |  |  
  
    |  | 
Returns the number of nodes in the list.
 
The range of valid child node indices is 0 to length-1inclusive. 
Since: 
DOM Level 1 
 |  
 
  
    | 
        
          | virtual DOMNode* DOMNodeList::item | ( | XMLSize_t | index | ) | const  [pure virtual] |  |  
  
    |  | 
Returns the indexitem in the collection. 
If indexis greater than or equal to the number of nodes in the list, this returnsnull. 
Parameters: 
| index | Index into the collection. | 
 
Returns: 
The node at the indexth position in theDOMNodeList, ornullif that is not a valid index.
 
Since: 
DOM Level 1 
 |  The documentation for this class was generated from the following file:
 |