Package oracle.rules.sdk2.datamodel
Class NodeTable
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Node>
,Collection<Node>
,List<Node>
,RandomAccess
Table containing all nodes (classes or packages)
that are currently exposed by a class browser.
These may be either java bean classes or
jaxb classes (representing xml nodes).
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionadd()
Add is unsupported.void
closeNode
(int ixNode) Close the specified node.getNode
(int i) Return the node entry at the specified index.Return the entry entry whose name matches the parameter.Return a parent to this tableloadNode
(int index) load the specified node into the data model.load the specified node into the data model.void
openNode
(int nodeIndex) Open the specified node.void
Open the specified node.void
openOrCloseNode
(String nodeName) Toggle the state of the Node entry specified by the fully qualiafied name of the entry.Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll, toString
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
containsAll
-
Method Details
-
getParent
Return a parent to this table -
getBrowser
-
add
Add is unsupported.- Throws:
UnsupportedOperationException
-
getNode
Return the node entry at the specified index. The NodeTable is indexed from 0.- Parameters:
i
- an int zero based index to retrieve node- Returns:
- Node node located at index
- Throws:
IndexOutOfBoundsException
-
getNode
Return the entry entry whose name matches the parameter. Only exact matches are performed (and all matches are case sensitive).- Parameters:
nodeName
- String entry to be located and returned.- Returns:
- Node node located by Node FQ Name
-
openNode
public void openNode(int nodeIndex) Open the specified node. The node is specified by the index in the table. Invokes the Open() method on the specifiedNode
entry.- Parameters:
nodeIndex
- an int of the node to be opened
-
openNode
Open the specified node. The node is specified by the name of theNode
entry in the table. If the node has no children, this method has no effect- Parameters:
nodeName
- String name of the node to be opened
-
closeNode
public void closeNode(int ixNode) Close the specified node. If the specifiedNode
does not have children, this method has no effect.- Parameters:
ixNode
- an int index of node to be closed
-
openOrCloseNode
Toggle the state of the Node entry specified by the fully qualiafied name of the entry. If the node is opened it will be closed. If the node is closed is will be opened. If the node is a leaf (has no children) no change will be made. To check the state of the node itself, retrieve the node entry from the table and examine its state.- Parameters:
nodeName
- String containing the Fully Qualifed Name of the node to be opened or closed
-
loadNode
load the specified node into the data model. The node to be loaded is specified by the index of the node. All classes or elements nodes will be loaded into the dictionary.- Parameters:
index
- an int of node to be loaded- Throws:
SDKException
- (if there are problems loading)
-
loadNode
load the specified node into the data model. The node to be loaded is specified by the index of the node. All classes or elements nodes will be loaded into the dictionary.- Parameters:
ndName
- String name of Node to be loaded- Throws:
SDKException
- (if there are problems loading or if node not found)
-