Uses of Class
org.biomage.tools.generate_er.AssociationColumn

Packages that use AssociationColumn
org.biomage.tools.generate_er   
 

Uses of AssociationColumn in org.biomage.tools.generate_er
 

Methods in org.biomage.tools.generate_er that return AssociationColumn
protected  AssociationColumn CreateMageER.createLinkColumn(java.lang.String className)
          Description: create a column for a linking table
 AssociationColumn Index.getIndexColumn()
          Description: get the column the is indexed
 AssociationColumn LinkingKey.getLinkOne()
          Description: get the column of link1 linking key
 AssociationColumn LinkingKey.getLinkTwo()
          Description: get the column of link2 linking key
 

Methods in org.biomage.tools.generate_er with parameters of type AssociationColumn
protected  Index CreateMageER.createIndex(AssociationColumn column, java.lang.String tableName, java.lang.String columnName)
          Description: create a Index object for a foreign key fk_oto does not have index fk_mto has index fk_mtm has index
protected  LinkingKey CreateMageER.createLinkingKey(AssociationColumn link1, AssociationColumn link2)
          Description: create a linkingKey object and set into the table
protected  void CreateMageER.ManyToOne(Table table, AssociationColumn column, CreateFile createFile, CreateFile.AssociationAttrInformation attr, java.io.FileWriter w)
          Description: create an association column for one to one relationship
protected  void CreateMageER.OneToMany(Table table, AssociationColumn column, CreateFile createFile, CreateFile.AssociationAttrInformation attr)
          Description: create an association column for one to one relationship
protected  void CreateMageER.OneToOne(Table table, AssociationColumn column, CreateFile createFile, CreateFile.AssociationAttrInformation attr)
          Description: create an association column for one to one relationship
 void Table.setAsso(AssociationColumn myData)
          Description: set one association column
 void Index.setIndexColumn(AssociationColumn column)
          Description: set column id for the index
 void LinkingKey.setLinkOne(AssociationColumn link1)
          Description: set one linking key for the table
 void LinkingKey.setLinkTwo(AssociationColumn link2)
          Description: set the other linking key for the table
 

Constructors in org.biomage.tools.generate_er with parameters of type AssociationColumn
Index(java.lang.String name, AssociationColumn myColumn)
          Description: Constructor for the Index object.
LinkingKey(AssociationColumn link1, AssociationColumn link2)
          Description: Constructor for the LinkingKey object.