Skip Headers

Oracle® XML API Reference
10g Release 1 (10.1)

Part Number B10789-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Go to previous page
Previous
Go to next page
Next
View PDF

NodeListRef Interface

Table 15-20 summarizes the methods of available through NodeListRef interface.

Table 15-20 Summary of NodeListRef Methods; Dom Package

Function Summary
NodeListRef
Constructor.
getLength
Get list's length.
item
Get item given its index.
~NodeListRef
Default destructor.


NodeListRef

Class constructor.

Syntax Description
NodeListRef(
   const NodeRef< Node>& node_ref,
   NodeList< Node>* lptr);
Used to create references to a given NodeList node.
NodeListRef(
   const NodeListRef< Node>& lref);
Copy constructor.

Parameter Description
node_ref
reference to provide the context
lptr
referenced list


Returns

(NodeListRef) Node reference object


getLength

Get the length of the list.


Syntax
ub4 getLength() const;


Returns

(ub4) list's length


item

Get the item, given its index.


Syntax
Node* item( 
   ub4 index) const;

Parameter Description
index
index of item


Returns

(Node*) pointer to the item


~NodeListRef

Destructs the object.


Syntax
~NodeListRef();