Uses of Class
proper.database.JoinTreeNode

Packages that use JoinTreeNode
proper.database All classes concerning Database access and traversal or related structures can be found here. 
 

Uses of JoinTreeNode in proper.database
 

Methods in proper.database that return JoinTreeNode
 JoinTreeNode RelationDiscoverer.discover()
          discovers the relation between the tables in the given database and returns the root element of the built tree
static JoinTreeNode JoinTreeNode.parseTreeString(java.lang.String tree)
          parses the given tree in string representation and returns it in a TreeNode Structure, e.g.:
 

Methods in proper.database with parameters of type JoinTreeNode
 java.util.Vector RelationDiscoverer.leftOverTables(JoinTreeNode root)
          returns all the tables that are not in this tree
static java.lang.String JoinTreeNode.toTreeString(JoinTreeNode node)
          returns the node and the subtree underneath in a string representation that can be parsed with the parseTree(String) method
static java.lang.String JoinTreeNode.toTreeString(JoinTreeNode node, boolean full)
          returns the node and the subtree underneath in a string representation that can be parsed with the parseTree(String) method