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

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

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

Methods in org.eclipse.jpt.jpa.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.jpa.db
 

Methods in org.eclipse.jpt.jpa.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 the 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.jpa.db that return types with arguments of type Column
 java.lang.Iterable<Column> ForeignKey.getBaseColumns()
          Return the foreign key's base columns.
 java.lang.Iterable<Column> Table.getColumns()
          Return the table's columns.
 java.lang.Iterable<Column> ForeignKey.getNonPrimaryKeyBaseColumns()
          Return the foreign key's base columns that are not part of the base table's primary key.
 java.lang.Iterable<Column> Table.getPrimaryKeyColumns()
          Return the table's primary key columns.
 java.lang.Iterable<Column> ForeignKey.getReferencedColumns()
          Return the foreign key's referenced columns.
 

Methods in org.eclipse.jpt.jpa.db with parameters of type Column
 void ConnectionListener.columnChanged(ConnectionProfile profile, Column column)
           
 void ConnectionAdapter.columnChanged(ConnectionProfile profile, Column column)