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

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

Uses of Table in org.eclipse.jpt.core
 

Methods in org.eclipse.jpt.core with parameters of type Table
 java.lang.String EntityGeneratorDatabaseAnnotationNameBuilder.buildJoinTableAnnotationName(Table table)
          Build and return a string to be used as the value for a JoinTable annotation's 'name' element.
 java.lang.String EntityGeneratorDatabaseAnnotationNameBuilder.buildTableAnnotationName(java.lang.String entityName, Table table)
          Given the name of an entity and the table to which it is mapped, build and return a string to be used as the value for the entity's Table annotation's 'name' element.
 

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

Methods in org.eclipse.jpt.core.context that return Table
 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 BaseOverride.Owner.getDbTable(java.lang.String tableName)
          Return the database table for the specified table name
 Table JoiningStrategy.getDbTable(java.lang.String tableName)
          Return the database table for the specified table name
 Table NamedColumn.Owner.getDbTable(java.lang.String tableName)
          Return the database table for the specified table name
 Table OverrideContainer.Owner.getDbTable(java.lang.String tableName)
          Return the database table for the specified 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 type mapping's primary database table.
 Table BaseJoinColumn.getReferencedColumnDbTable()
          Return the wrapper for the referenced column datasource table
 Table BaseJoinColumn.Owner.getReferencedColumnDbTable()
          Return the wrapper for the datasource table for the referenced column
 

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

Methods in org.eclipse.jpt.core.jpa2.context that return Table
 Table Orderable2_0.Owner.getDbTable(java.lang.String tableName)
           
 

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 Column.getTable()
          Return the column's table.
 Table Schema.getTableForIdentifier(java.lang.String identifier)
          Return the table for the specified identifier.
 Table Schema.getTableNamed(java.lang.String name)
          Return the table with specified name.
 

Methods in org.eclipse.jpt.db that return types with arguments of type Table
 java.lang.Iterable<Table> Schema.getTables()
          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)