blob: c2db291cfeb19406446fc30a06f1b917b3f1b21e [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.codeInspection.htmlInspections;
import com.intellij.codeInsight.intention.IntentionAction;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.intellij.codeInspection.InspectionsBundle;
import com.intellij.codeInspection.XmlInspectionGroupNames;
import com.intellij.codeInspection.XmlSuppressableInspectionTool;
import com.intellij.codeInspection.ex.UnfairLocalInspectionTool;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.util.Key;
import com.intellij.xml.XmlBundle;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
public class RequiredAttributesInspectionBase extends XmlSuppressableInspectionTool
implements XmlEntitiesInspection, UnfairLocalInspectionTool {
@NonNls public static final Key<InspectionProfileEntry> SHORT_NAME_KEY = Key.create(REQUIRED_ATTRIBUTES_SHORT_NAME);
protected static final Logger LOG = Logger.getInstance("#com.intellij.codeInspection.htmlInspections.RequiredAttributesInspection");
public String myAdditionalRequiredHtmlAttributes = "";
private static String appendName(String toAppend, String text) {
if (!toAppend.isEmpty()) {
toAppend += "," + text;
}
else {
toAppend = text;
}
return toAppend;
}
@Override
@NotNull
public String getGroupDisplayName() {
return XmlInspectionGroupNames.HTML_INSPECTIONS;
}
@Override
@NotNull
public String getDisplayName() {
return InspectionsBundle.message("inspection.required.attributes.display.name");
}
@Override
@NotNull
@NonNls
public String getShortName() {
return REQUIRED_ATTRIBUTES_SHORT_NAME;
}
@Override
public String getAdditionalEntries() {
return myAdditionalRequiredHtmlAttributes;
}
@Override
public void addEntry(String text) {
myAdditionalRequiredHtmlAttributes = appendName(getAdditionalEntries(), text);
}
@Override
public boolean isEnabledByDefault() {
return true;
}
public static IntentionAction getIntentionAction(String name) {
return new AddHtmlTagOrAttributeToCustomsIntention(SHORT_NAME_KEY, name, XmlBundle.message("add.optional.html.attribute", name));
}
}