Package com.nomagic.magicreport.helper
Class XMLNodeList
java.lang.Object
com.nomagic.magicreport.helper.XMLNodeList
- All Implemented Interfaces:
NodeList
The
NodeList interface provides the abstraction of an ordered collection of nodes, without
defining or constraining how this collection is implemented. NodeList objects in the DOM are live.
The items in the NodeList are accessible via an integral index, starting from 0.- Since:
- May 23, 2007
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
XMLNodeList
public XMLNodeList()
-
-
Method Details
-
item
Returns theindexth item in the collection. Ifindexis greater than or equal to the number of nodes in the list, this returnsnull. -
getLength
public int getLength()The number of nodes in the list. The range of valid child node indices is 0 tolength-1inclusive.
-