Package com.intellij.openapi.compiler

Examples of com.intellij.openapi.compiler.CompileScope


    if (!Boolean.valueOf(preferences.getProperty(FindBugsPreferences.ANALYZE_AFTER_COMPILE))) {
      return;
    }

    final CompileScope compileScope = compileContext.getCompileScope();
    final VirtualFile[] affectedFiles = compileScope.getFiles(StdFileTypes.JAVA, true);

    if (Boolean.valueOf(preferences.getProperty(FindBugsPreferences.TOOLWINDOW_TO_FRONT))) {
      final ToolWindow toolWindow = IdeaUtilImpl.getToolWindowById(findBugsPlugin.getInternalToolWindowId(), project);
      IdeaUtilImpl.activateToolWindow(toolWindow);
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.compiler.CompileScope

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.