Uses of Class
com.caucho.amber.table.ForeignColumn

Packages that use ForeignColumn
com.caucho.amber.field   
com.caucho.amber.table   
 

Uses of ForeignColumn in com.caucho.amber.field
 

Methods in com.caucho.amber.field that return ForeignColumn
 ForeignColumn KeyManyToOneField.getColumn(AmberColumn key)
          Gets the column corresponding to the target field.
 ForeignColumn ManyToOneField.getColumn(AmberColumn targetColumn)
          Gets the column corresponding to the target field.
 ForeignColumn DependentEntityOneToOneField.getColumn(IdField targetField)
          Gets the column corresponding to the target field.
 ForeignColumn CollectionField.getSourceColumn(AmberColumn key)
          Returns the source column for a given target key.
 

Constructors in com.caucho.amber.field with parameters of type ForeignColumn
IdentifyingKeyPropertyField(EntityType entityType, ForeignColumn column)
           
 

Uses of ForeignColumn in com.caucho.amber.table
 

Methods in com.caucho.amber.table that return ForeignColumn
 ForeignColumn AmberTable.createForeignColumn(java.lang.String name, AmberColumn key)
          Creates a foreign column.
 ForeignColumn LinkColumns.getSourceColumn(AmberColumn targetKey)
          Generates the linking for a link
 

Methods in com.caucho.amber.table that return types with arguments of type ForeignColumn
 java.util.ArrayList<ForeignColumn> LinkColumns.getColumns()
          Returns the component list.
 

Constructor parameters in com.caucho.amber.table with type arguments of type ForeignColumn
LinkColumns(AmberTable sourceTable, AmberTable targetTable, java.util.ArrayList<ForeignColumn> columns)
          Creates the table link.