Package com.intellij.codeInspection.ex

Examples of com.intellij.codeInspection.ex.LocalInspectionToolWrapper


      }


      public InspectionTool getInspectionTool(String shortName) {
        if (availableToolsMap.containsKey(shortName)) {
          return new LocalInspectionToolWrapper(availableToolsMap.get(shortName));
        }
        return null;
      }

    };
View Full Code Here


    final HighlightDisplayKey key = HighlightDisplayKey.find(shortName);
    if (key == null){
      HighlightDisplayKey.register(shortName, tool.getDisplayName(), tool.getID());
    }
    availableToolsMap.put(shortName, tool);
    availableLocalTools.put(shortName, new LocalInspectionToolWrapper(tool));
  }
View Full Code Here

TOP

Related Classes of com.intellij.codeInspection.ex.LocalInspectionToolWrapper

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.