Package net.sf.minuteProject.loader.catalog.technologycatalog.node

Examples of net.sf.minuteProject.loader.catalog.technologycatalog.node.Technology


 
  public static List<Technology> getDependentTechnologies (Technology technology, String catalogDir) {
    List<Technology> list = new ArrayList<Technology>();
    List<String> targets = ParserUtils.getList(technology.getDependsOnTargets());
    for (String targetName : targets) {
      Technology tech = getTechnologyByTargetName(targetName, catalogDir);
      if (tech!=null)
        list.add(tech);
    }
    return list;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.loader.catalog.technologycatalog.node.Technology

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.