Package cn.org.rapid_framework.generator.util

Examples of cn.org.rapid_framework.generator.util.ListHashtable


   * Constructor for Foreign Keys
   */
  public ForeignKeys(Table aTable) {
    super();
    parentTable      = aTable;
    associatedTables = new ListHashtable();
  }
View Full Code Here


 
  public ForeignKey(Table aTable, String tblName) {
    super();
    parentTable = aTable;
    tableName   = tblName;
    columns = new ListHashtable();
    parentColumns = new ListHashtable();
  }
View Full Code Here

   * Constructor for Foreign Keys
   */
  public ForeignKeys(Table aTable) {
    super();
    parentTable      = aTable;
    associatedTables = new ListHashtable();
  }
View Full Code Here

 
  public ForeignKey(Table aTable, String tblName) {
    super();
    parentTable = aTable;
    tableName   = tblName;
    columns = new ListHashtable();
    parentColumns = new ListHashtable();
  }
View Full Code Here

TOP

Related Classes of cn.org.rapid_framework.generator.util.ListHashtable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.