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

Packages that use ForeignKey
org.eclipse.jpt.core   
org.eclipse.jpt.db   
 

Uses of ForeignKey in org.eclipse.jpt.core
 

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

Uses of ForeignKey in org.eclipse.jpt.db
 

Methods in org.eclipse.jpt.db that return ForeignKey
 ForeignKey Table.getJoinTableNonOwningForeignKey()
          Assuming the table is a "join" table, return the foreign key to the "non-owning" table.
 ForeignKey Table.getJoinTableOwningForeignKey()
          Assuming the table is a "join" table, return the foreign key to the "owning" table.
 

Methods in org.eclipse.jpt.db that return types with arguments of type ForeignKey
 java.util.Iterator<ForeignKey> Table.foreignKeys()
          Return the table's foreign keys.
 

Methods in org.eclipse.jpt.db with parameters of type ForeignKey
 void ConnectionAdapter.foreignKeyChanged(ConnectionProfile profile, ForeignKey foreignKey)
           
 void ConnectionListener.foreignKeyChanged(ConnectionProfile profile, ForeignKey foreignKey)