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

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

Uses of Column in org.eclipse.jpt.core
 

Methods in org.eclipse.jpt.core with parameters of type Column
 java.lang.String EntityGeneratorDatabaseAnnotationNameBuilder.buildColumnAnnotationName(java.lang.String attributeName, Column column)
          Given the name of an attribute (field or property) and the column to which it is mapped, build and return a string to be used as the value for the attribute's Column annotation's 'name' element.
 java.lang.String EntityGeneratorDatabaseAnnotationNameBuilder.buildJoinColumnAnnotationName(Column column)
          Build and return a string to be used as the value for a JoinColumn annotation's 'name' or 'referencedColumnName' element.
 

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.getReferencedDbColumn()
          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.getBaseColumn()
          Return the column pair's "base" column.
 Column Table.getColumnForIdentifier(java.lang.String identifier)
          Return the column for the specified identifier.
 Column Table.getColumnNamed(java.lang.String name)
          Return the column with specified name.
 Column Table.getPrimaryKeyColumn()
          Return the table's single primary key column.
 Column ForeignKey.ColumnPair.getReferencedColumn()
          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)