use of com.intellij.codeInspection.javaDoc.JavaDocLocalInspectionBase in project intellij-community by JetBrains.
the class JavaAwareInspectionProfileCoverter method fillErrorLevels.
@Override
protected void fillErrorLevels(InspectionProfileImpl profile) {
super.fillErrorLevels(profile);
//javadoc attributes
InspectionToolWrapper toolWrapper = profile.getInspectionTool(JavaDocLocalInspectionBase.SHORT_NAME, (PsiElement) null);
JavaDocLocalInspectionBase inspection = (JavaDocLocalInspectionBase) toolWrapper.getTool();
inspection.myAdditionalJavadocTags = myAdditionalJavadocTags;
}
Aggregations