Package net.sf.minuteProject.configuration.bean.model.data.impl.DDLUtils

Examples of net.sf.minuteProject.configuration.bean.model.data.impl.DDLUtils.TableDDLUtils


  public void setMasterRelationshipField(String masterRelationshipField) {
    this.masterRelationshipField = masterRelationshipField;
  }

  public Table getTable (Database database) {
    Table table = new TableDDLUtils(getTable(this, database));
    for (Action action : this.getActions()) {
      action.setParent(table);
    }
    table.setActions (this.getActions());
    table.setFieldGroups(this.getFieldGroups());
    return table;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.model.data.impl.DDLUtils.TableDDLUtils

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.