| |
|
| java.lang.Object org.enhydra.xml.NodeListImpl
Constructor Summary | |
public | NodeListImpl() Constructs an empty NodeListImpl . | public | NodeListImpl(List nodes) Constructs NodeListImpl with the given list of nodes. |
Method Summary | |
public NodeList | append(NodeListImpl list) Appends the given list to the end of the existing one.
Parameters: list - list to add, as NodeListImpl . | public int | getLength() Returns the count of nodes. | public Node | item(int index) Returns the Node with the given index.
Parameters: index - node index. |
NodeListImpl | public NodeListImpl()(Code) | | Constructs an empty NodeListImpl .
|
NodeListImpl | public NodeListImpl(List nodes)(Code) | | Constructs NodeListImpl with the given list of nodes.
Parameters: nodes - list of nodes. |
append | public NodeList append(NodeListImpl list)(Code) | | Appends the given list to the end of the existing one.
Parameters: list - list to add, as NodeListImpl . this as NodeList. |
getLength | public int getLength()(Code) | | Returns the count of nodes.
the count of nodes. |
item | public Node item(int index)(Code) | | Returns the Node with the given index.
Parameters: index - node index. the Node with the given index. |
|
|
|