Package tool.builder

Examples of tool.builder.PlanDetail


      Matcher matcher = planDetailPattern.matcher(line);
      if (matcher.find()){
        String name = matcher.group(1);
        boolean isLibrary = Boolean.parseBoolean(matcher.group(2));
        boolean isSystemLibrary = Boolean.parseBoolean(matcher.group(3));
        PlanDetail plan = new PlanDetail(name,
            isLibrary,
            isSystemLibrary);
        if (plan.getName().startsWith("qq"))
          continue;
        planInfo.add(plan);
      }
    }
    return planInfo;
View Full Code Here

TOP

Related Classes of tool.builder.PlanDetail

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.