summaryrefslogtreecommitdiff
path: root/java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java')
-rw-r--r--java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java90
1 files changed, 90 insertions, 0 deletions
diff --git a/java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java b/java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java
new file mode 100644
index 000000000000..6136e01f85d8
--- /dev/null
+++ b/java/java-analysis-impl/src/com/intellij/codeInspection/SuppressManagerImpl.java
@@ -0,0 +1,90 @@
+/*
+ * Copyright 2000-2014 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.
+ */
+
+/*
+ * User: anna
+ * Date: 24-Dec-2007
+ */
+package com.intellij.codeInspection;
+
+import com.intellij.codeInsight.daemon.HighlightDisplayKey;
+import com.intellij.psi.PsiDocCommentOwner;
+import com.intellij.psi.PsiElement;
+import com.intellij.psi.PsiModifierListOwner;
+import org.jetbrains.annotations.NotNull;
+import org.jetbrains.annotations.Nullable;
+
+import java.util.Collection;
+
+public class SuppressManagerImpl extends SuppressManager {
+ @Override
+ @NotNull
+ public SuppressIntentionAction[] createSuppressActions(@NotNull final HighlightDisplayKey displayKey) {
+ SuppressQuickFix[] batchSuppressActions = createBatchSuppressActions(displayKey);
+ return SuppressIntentionActionFromFix.convertBatchToSuppressIntentionActions(batchSuppressActions);
+ }
+
+ @Override
+ public boolean isSuppressedFor(@NotNull final PsiElement element, final String toolId) {
+ return JavaSuppressionUtil.getElementToolSuppressedIn(element, toolId) != null;
+ }
+
+ @Override
+ @Nullable
+ public PsiElement getElementMemberSuppressedIn(@NotNull final PsiDocCommentOwner owner, final String inspectionToolID) {
+ return JavaSuppressionUtil.getElementMemberSuppressedIn(owner, inspectionToolID);
+ }
+
+ @Override
+ @Nullable
+ public PsiElement getAnnotationMemberSuppressedIn(@NotNull final PsiModifierListOwner owner, final String inspectionToolID) {
+ return JavaSuppressionUtil.getAnnotationMemberSuppressedIn(owner, inspectionToolID);
+ }
+
+ @Override
+ @Nullable
+ public PsiElement getDocCommentToolSuppressedIn(@NotNull final PsiDocCommentOwner owner, final String inspectionToolID) {
+ return JavaSuppressionUtil.getDocCommentToolSuppressedIn(owner, inspectionToolID);
+ }
+
+ @Override
+ @NotNull
+ public Collection<String> getInspectionIdsSuppressedInAnnotation(@NotNull final PsiModifierListOwner owner) {
+ return JavaSuppressionUtil.getInspectionIdsSuppressedInAnnotation(owner);
+ }
+
+ @Override
+ @Nullable
+ public String getSuppressedInspectionIdsIn(@NotNull PsiElement element) {
+ return JavaSuppressionUtil.getSuppressedInspectionIdsIn(element);
+ }
+
+ @Override
+ @Nullable
+ public PsiElement getElementToolSuppressedIn(@NotNull final PsiElement place, final String toolId) {
+ return JavaSuppressionUtil.getElementToolSuppressedIn(place, toolId);
+ }
+
+ @Override
+ public boolean canHave15Suppressions(@NotNull final PsiElement file) {
+ return JavaSuppressionUtil.canHave15Suppressions(file);
+ }
+
+ @Override
+ public boolean alreadyHas14Suppressions(@NotNull final PsiDocCommentOwner commentOwner) {
+ return JavaSuppressionUtil.alreadyHas14Suppressions(commentOwner);
+ }
+}