use of com.intellij.codeInspection.ex.InspectionProfileModifiableModel in project intellij-community by JetBrains.
the class InspectionToolsConfigurable method selectProfile.
@Override
public void selectProfile(InspectionProfileImpl profile) {
final InspectionProfileModifiableModel modifiableModel = myAbstractSchemesPanel.getModel().getModifiableModelFor(profile);
showProfile(modifiableModel);
}
use of com.intellij.codeInspection.ex.InspectionProfileModifiableModel in project intellij-community by JetBrains.
the class InspectionToolsConfigurable method selectInspectionTool.
@Override
public void selectInspectionTool(String selectedToolShortName) {
final InspectionProfileModifiableModel inspectionProfile = getSelectedObject();
final SingleInspectionProfilePanel panel = myAbstractSchemesPanel.getModel().getProfilePanel(inspectionProfile);
panel.selectInspectionTool(selectedToolShortName);
}
Aggregations