public interface NodeList extends NodeCollection
| Modifier and Type | Method and Description |
|---|---|
void |
addNode(GPNode node)
Adds the new node to this list
|
void |
addNodes(GPNode[] nodes)
Adds all nodes in the given array to this list
|
java.util.Iterator |
iterator()
Returns an iterator over the nodes in this list in proper sequence.
|
boolean |
removeNode(GPNode node)
Removes the node from this list
|
boolean |
removeNodes(GPNode[] nodes)
Removes all nodes from this list
|
clear, findChildByName, getChildrenManager, getNodesCount, getParentNode, refreshOrderingvoid addNode(GPNode node)
node - the node to add to this listvoid addNodes(GPNode[] nodes)
nodes - an array of nodes to add to this listboolean removeNode(GPNode node)
node - the node to remove from the listboolean removeNodes(GPNode[] nodes)
nodes - the nodes to remove from the listjava.util.Iterator iterator()