Examples of PathsList


Examples of com.intellij.util.PathsList

  public static final RootTraversePolicy PROJECT_LIBRARIES =
    new RootTraversePolicy(null, null, RootTraversePolicy.ADD_CLASSES, RootTraversePolicy.RECURSIVE);

  public static PathsList collectRoots(Project project, RootTraversePolicy policy) {
    PathsList listBuilder = new PathsList();
    collectRoots(project, policy, listBuilder);
    return listBuilder;
  }
View Full Code Here

Examples of com.intellij.util.PathsList

  public static void collectRoots(final Project project, final RootTraversePolicy policy, final PathsList listBuilder) {
    traverseOrder(project, policy, new TraverseState(listBuilder));
  }

  public static PathsList collectRoots(Module module, RootTraversePolicy policy) {
    final PathsList listBuilder = new PathsList();
    collectRoots(module, policy, listBuilder);
    return listBuilder;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.