mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
extension to forbid suggestion of final modifier (IDEA-77156)
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Copyright 2000-2012 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.canBeFinal;
|
||||
|
||||
import com.intellij.openapi.extensions.ExtensionPointName;
|
||||
import com.intellij.openapi.extensions.Extensions;
|
||||
import com.intellij.psi.PsiMember;
|
||||
|
||||
/**
|
||||
* User: anna
|
||||
* Date: 1/31/12
|
||||
*/
|
||||
public abstract class CanBeFinalHandler {
|
||||
public static final ExtensionPointName<CanBeFinalHandler> EP_NAME = ExtensionPointName.create("com.intellij.canBeFinal");
|
||||
|
||||
public abstract boolean canBeFinal(PsiMember member);
|
||||
|
||||
public static boolean allowToBeFinal(PsiMember member) {
|
||||
for (CanBeFinalHandler handler : Extensions.getExtensions(EP_NAME)) {
|
||||
if (!handler.canBeFinal(member)) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -139,6 +139,9 @@ public class CanBeFinalInspection extends GlobalJavaInspectionTool {
|
||||
if (refElement.isFinal()) return null;
|
||||
if (!((RefElementImpl)refElement).checkFlag(CanBeFinalAnnotator.CAN_BE_FINAL_MASK)) return null;
|
||||
|
||||
final PsiMember psiMember = (PsiMember)refElement.getElement();
|
||||
if (!CanBeFinalHandler.allowToBeFinal(psiMember)) return null;
|
||||
|
||||
PsiIdentifier psiIdentifier = null;
|
||||
if (refElement instanceof RefClass) {
|
||||
RefClass refClass = (RefClass)refElement;
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
package com.siyeh.ig.style;
|
||||
|
||||
import com.intellij.codeInspection.canBeFinal.CanBeFinalHandler;
|
||||
import com.intellij.psi.PsiField;
|
||||
import com.intellij.psi.PsiModifier;
|
||||
import com.siyeh.InspectionGadgetsBundle;
|
||||
@@ -65,6 +66,7 @@ public class FieldMayBeFinalInspection extends BaseInspection {
|
||||
!field.hasModifierProperty(PsiModifier.PRIVATE)) {
|
||||
return;
|
||||
}
|
||||
if (!CanBeFinalHandler.allowToBeFinal(field)) return;
|
||||
if (!FinalUtils.canBeFinal(field)) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -65,6 +65,8 @@
|
||||
<extensionPoint name="unusedDeclarationFixProvider"
|
||||
interface="com.intellij.codeInspection.reference.UnusedDeclarationFixProvider"/>
|
||||
|
||||
<extensionPoint name="canBeFinal"
|
||||
interface="com.intellij.codeInspection.canBeFinal.CanBeFinalHandler"/>
|
||||
<!-- PsiMember -->
|
||||
<extensionPoint name="javaDocNotNecessary"
|
||||
interface="com.intellij.openapi.util.Condition"/>
|
||||
|
||||
Reference in New Issue
Block a user