Package com.intellij.util

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


  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

Related Classes of com.intellij.util.PathsList

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.