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

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

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

Methods in org.eclipse.jpt.core.context that return Column
 Column NamedColumn.getDbColumn()
          Return the wrapper for the datasource column
 Column BaseJoinColumn.getDbReferencedColumn()
          Return the wrapper for the datasource referenced column
 

Uses of Column in org.eclipse.jpt.db
 

Methods in org.eclipse.jpt.db that return Column
 Column ForeignKey.ColumnPair.baseColumn()
          Return the column pair's "base" column.
 Column Table.columnNamed(java.lang.String name)
          Return the column in the table with the specified name, respecting the database's case-sensitivity.
 Column Table.primaryKeyColumn()
          Return the table's single primary key column.
 Column ForeignKey.ColumnPair.referencedColumn()
          Return the column pair's "referenced" column.
 

Methods in org.eclipse.jpt.db that return types with arguments of type Column
 java.util.Iterator<Column> ForeignKey.baseColumns()
          Return the foreign key's "base" columns.
 java.util.Iterator<Column> Table.columns()
          Return the table's columns.
 java.util.Iterator<Column> ForeignKey.nonPrimaryKeyBaseColumns()
          Return the foreign key's "base" columns that are not part of the base table's primary key.
 java.util.Iterator<Column> Table.primaryKeyColumns()
          Return the table's primary key columns.
 java.util.Iterator<Column> ForeignKey.referencedColumns()
          Return the foreign key's "referenced" columns.
 

Methods in org.eclipse.jpt.db with parameters of type Column
 void ConnectionAdapter.columnChanged(ConnectionProfile profile, Column column)
           
 void ConnectionListener.columnChanged(ConnectionProfile profile, Column column)
           
 boolean Table.foreignKeyBaseColumnsContains(Column column)
          Return whether the specified column is a "base" column for any of the table's foreign keys.
 boolean Table.primaryKeyColumnsContains(Column column)
          Return whether the specified column is one of the table's primary key columns.