Package org.hibernate.tool.orm.jbt.wrp
Interface ForeignKeyWrapper
-
- All Superinterfaces:
Wrapper
- All Known Implementing Classes:
DelegatingForeignKeyWrapperImpl
public interface ForeignKeyWrapper extends Wrapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<org.hibernate.mapping.Column>columnIterator()booleancontainsColumn(org.hibernate.mapping.Column column)List<org.hibernate.mapping.Column>getReferencedColumns()org.hibernate.mapping.TablegetReferencedTable()org.hibernate.mapping.ForeignKeygetWrappedObject()booleanisReferenceToPrimaryKey()
-
-
-
Method Detail
-
getWrappedObject
org.hibernate.mapping.ForeignKey getWrappedObject()
- Specified by:
getWrappedObjectin interfaceWrapper
-
getReferencedTable
org.hibernate.mapping.Table getReferencedTable()
-
columnIterator
Iterator<org.hibernate.mapping.Column> columnIterator()
-
isReferenceToPrimaryKey
boolean isReferenceToPrimaryKey()
-
getReferencedColumns
List<org.hibernate.mapping.Column> getReferencedColumns()
-
containsColumn
boolean containsColumn(org.hibernate.mapping.Column column)
-
-