SMACS

smacs.load.mapping
Interface DbMappingForeignKeyFields

All Superinterfaces:
DbMappingConstraintFields
All Known Implementing Classes:
DbMappingForeignKeyFieldsNode

public interface DbMappingForeignKeyFields
extends DbMappingConstraintFields

representation of a foreign constraint of a mapping. It has to have a property of a list of fields which is included in the constraint - both for the local fields and the remote fields.

See Also:
DbMappingForeignKeyFieldsNode

Method Summary
 DbMappingColumnFieldName getForeignFieldName(int i)
          get remote field by index.
 DbMappingColumnFieldName getLocalFieldName(int i)
          get constraint field by index.
 
Methods inherited from interface smacs.load.mapping.DbMappingConstraintFields
getColumnFieldName
 

Method Detail

getLocalFieldName

public DbMappingColumnFieldName getLocalFieldName(int i)
get constraint field by index.


getForeignFieldName

public DbMappingColumnFieldName getForeignFieldName(int i)
get remote field by index.


SMACS