Uses of Class
proper.database.Table

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

Uses of Table in proper.database
 

Methods in proper.database that return Table
 Table TableTreeNode.getChildTableAt(int index)
          returns the table of the specified child
 Table TableTreeNode.getTable()
          returns the Table object of this node
 Table JoinTreeNode.getTable()
          returns the Table object of this node, null if not a Table object stored
 

Methods in proper.database with parameters of type Table
 java.lang.String Table.createForeignKeyStatement(Column localCol, Table foreignTable, Column foreignCol)
          generates an SQL statement for adding a foreign key to this table.
static java.lang.String Table.createForeignKeyStatement(Table localTable, Column localCol, Table foreignTable, Column foreignCol)
          generates an SQL statement for adding a foreign key to this table.
 boolean Dropper.drop(Table table)
          drops the given table
 boolean TableTreeNode.isInPath(Table t)
          checks whether the given table is somewhere on the path to the root
 void JoinTreeNode.setTable(Table t)
          sets the Table
 

Constructors in proper.database with parameters of type Table
JoinTreeNode(Table t)
          initializes the node with the given Table (only for the root element!)