Package com.intellij.openapi.roots

Examples of com.intellij.openapi.roots.FileIndex


    public PackageScope(@NotNull PsiPackage aPackage, boolean includeSubpackages, final boolean includeLibraries) {
      myPackage = aPackage;
      myIncludeSubpackages = includeSubpackages;

      Project project = myPackage.getProject();
      FileIndex fileIndex = ProjectRootManager.getInstance(project).getFileIndex();
      myDirs = fileIndex.getDirsByPackageName(myPackage.getQualifiedName(), true).findAll();
      myIncludeLibraries = includeLibraries;
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.roots.FileIndex

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.