Package net.sf.minuteProject.configuration.bean

Examples of net.sf.minuteProject.configuration.bean.GenerationCondition


    businessPackage.setConditions(conditions);
    return businessPackage;
  }

  private GenerationCondition getGenerationCondition() {
    GenerationCondition generationCondition = new GenerationCondition();
    generationCondition.setExcludeTables(!getAreTablesIncluded());
    generationCondition.setExcludeViews(!getAreViewsIncluded());
    generationCondition.setDefaultType(getFilterFileType());
    List<String> filenames = ParserUtils.getList(getFilterFile());
    String conditionType = getConditionType();
    for (String filename : filenames) {
      generationCondition.addCondition(getCondition(filename, conditionType));
   
    return generationCondition;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.GenerationCondition

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.