Package net.sf.minuteProject.configuration.bean.model.data.constant

Examples of net.sf.minuteProject.configuration.bean.model.data.constant.Direction


    }
  }
 
  protected void generateArtifactsByFunction(Template template, Direction... direction) throws MinuteProjectException
    for (Function function : getModel().getDataModel().getDatabase().getFunctions()) {
      Direction functionDirection = function.getDirection();
      for (Direction dir : direction) { // dir has to be put in the correct order IN or OUT before NONE, INOUT
        if (dir.equals(functionDirection)) {
          writeTemplateResult(function.getEntity(dir), template);
          break;
        }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.model.data.constant.Direction

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.