Class Node


  • public class Node
    extends Object
    • Constructor Detail

      • Node

        public Node​(String text)
      • Node

        public Node​(String text,
                    Node parent)
    • Method Detail

      • getChildren

        public List<Node> getChildren()
      • getResultSet

        public ResultSet getResultSet()
      • setParent

        public void setParent​(Node n)
      • addChild

        public Node addChild​(String text)
      • getText

        public String getText()
      • setText

        public void setText​(String text)
      • isRoot

        public boolean isRoot()
      • isLeaf

        public boolean isLeaf()
      • removeParent

        public void removeParent()
      • setResultSet

        public void setResultSet​(ResultSet rs)
      • add

        public void add​(DataRow rec)
      • hasChildren

        public boolean hasChildren()
      • getRowData

        public DataRow getRowData()
      • hasResultSet

        public boolean hasResultSet()