|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |
class INodeList: virtual public CInterface { public: INodeList(); virtual ~INodeList(); public: virtual int GetLength() = 0; public: virtual XNode Item(int nIndex) = 0; };
The ordered collection of nodes.
This class implements
the C++ binding for the
NodeList
interface
specified by DOM.
INode
Constructor/Destructor Summary | |
INodeList
();
����������Constructs the node list. |
|
~INodeList
();
����������Destroys the node list. |
Function Summary | |
int
|
GetLength
();
����������Returns the number of nodes in this node list. |
XNode
|
Item
(int nIndex);
����������Returns the node in this node list at the index specified by nIndex
. |
Constructor/Destructor Detail |
INodeList();
Constructs the node list.
virtual ~INodeList();
Destroys the node list.
Function Detail |
virtual int GetLength() = 0;
Returns the number of nodes in this node list.
This method implements the C++ binding
for the
length
attribute specified by
DOM.
virtual XNode Item(int nIndex) = 0;
Returns the node in this node list
at the index specified by
nIndex
.
This method implements the C++ binding
for the
item
operation specified by
DOM.
nIndex
- the node index (zero-based)
|
Unicorn XML Toolkit Version 1.00.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: � CONSTR �|� FUNCTION �|�DATA | DETAIL: � CONSTR �|� FUNCTION �|�DATA |