Uses of Interface
org.eclipse.jpt.db.Table

Packages that use Table
org.eclipse.jpt.core.context   
org.eclipse.jpt.db   
 

Uses of Table in org.eclipse.jpt.core.context
 

Methods in org.eclipse.jpt.core.context that return Table
 Table BaseJoinColumn.Owner.getDbReferencedColumnTable()
          Return the wrapper for the datasource table for the referenced column
 Table NamedColumn.getDbTable()
          Return the wrapper for the datasource table
 Table Table.getDbTable()
           
 Table TableGenerator.getDbTable()
          Return a db Table object with the specified/default table name.
 Table NamedColumn.Owner.getDbTable(java.lang.String tableName)
          Return the wrapper for the datasource table for the given table name
 Table TypeMapping.getDbTable(java.lang.String tableName)
          return the resolved associated db table with the passed in name
 Table TypeMapping.getPrimaryDbTable()
          return the resolved primary db table
 

Uses of Table in org.eclipse.jpt.db
 

Methods in org.eclipse.jpt.db that return Table
 Table ForeignKey.getBaseTable()
          Return the foreign key's "base" table.
 Table ForeignKey.getReferencedTable()
          Return the foreign key's "referenced" table.
 Table Schema.tableNamed(java.lang.String name)
          Return the table in the schema with the specified name, respecting the database's case-sensitivity.
 

Methods in org.eclipse.jpt.db that return types with arguments of type Table
 java.util.Iterator<Table> Schema.tables()
          Return the schema's tables.
 

Methods in org.eclipse.jpt.db with parameters of type Table
 void ConnectionAdapter.tableChanged(ConnectionProfile profile, Table table)
           
 void ConnectionListener.tableChanged(ConnectionProfile profile, Table table)