Class NodeTable

All Implemented Interfaces:
Serializable, Cloneable, Iterable<Node>, Collection<Node>, List<Node>, RandomAccess

public class NodeTable extends ArrayList<Node>
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 Details

    • getParent

      public NodeTable getParent()
      Return a parent to this table
    • getBrowser

      public Browser getBrowser()
    • add

      public Node add()
      Add is unsupported.
      Throws:
      UnsupportedOperationException
    • getNode

      public Node getNode(int i)
      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

      public Node getNode(String nodeName)
      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 specified Node entry.
      Parameters:
      nodeIndex - an int of the node to be opened
    • openNode

      public void openNode(String nodeName)
      Open the specified node. The node is specified by the name of the Node 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 specified Node does not have children, this method has no effect.
      Parameters:
      ixNode - an int index of node to be closed
    • openOrCloseNode

      public void openOrCloseNode(String nodeName)
      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

      public List<FactType> loadNode(int index) throws SDKException
      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

      public List<FactType> loadNode(String ndName) throws SDKException
      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)