Package com.intellij.codeInspection

Examples of com.intellij.codeInspection.LocalInspectionTool


      public boolean isToolEnabled(HighlightDisplayKey key) {
        return key != null && availableToolsMap.containsKey(key.toString());
      }

      public HighlightDisplayLevel getErrorLevel(HighlightDisplayKey key) {
        final LocalInspectionTool localInspectionTool = availableToolsMap.get(key.toString());
        return localInspectionTool != null ? localInspectionTool.getDefaultLevel() : HighlightDisplayLevel.WARNING;
      }


      public InspectionTool getInspectionTool(String shortName) {
        if (availableToolsMap.containsKey(shortName)) {
View Full Code Here

TOP

Related Classes of com.intellij.codeInspection.LocalInspectionTool

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.