blob: d80b0b341616dd711e57378a78d9d01182efdf62 [file] [log] [blame]
/*
* Copyright 2003-2007 Dave Griffith, Bas Leijdekkers
*
* 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.siyeh.ig.bugs;
import com.intellij.psi.*;
import com.siyeh.HardcodedMethodConstants;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.BaseInspection;
import com.siyeh.ig.BaseInspectionVisitor;
import com.siyeh.ig.psiutils.TypeUtils;
import org.jetbrains.annotations.NotNull;
public class CovariantEqualsInspection extends BaseInspection {
@Override
@NotNull
public String getDisplayName() {
return InspectionGadgetsBundle.message(
"covariant.equals.display.name");
}
@Override
@NotNull
public String buildErrorString(Object... infos) {
return InspectionGadgetsBundle.message(
"covariant.equals.problem.descriptor");
}
@Override
public BaseInspectionVisitor buildVisitor() {
return new CovariantEqualsVisitor();
}
private static class CovariantEqualsVisitor extends BaseInspectionVisitor {
@Override
public void visitMethod(@NotNull PsiMethod method) {
// note: no call to super
final String name = method.getName();
if (!HardcodedMethodConstants.EQUALS.equals(name)) {
return;
}
if (!method.hasModifierProperty(PsiModifier.PUBLIC)) {
return;
}
final PsiParameterList parameterList = method.getParameterList();
if (parameterList.getParametersCount() != 1) {
return;
}
final PsiParameter[] parameters = parameterList.getParameters();
final PsiType argType = parameters[0].getType();
if (TypeUtils.isJavaLangObject(argType)) {
return;
}
final PsiClass aClass = method.getContainingClass();
if (aClass == null || aClass.isInterface()) {
return;
}
final PsiMethod[] methods = aClass.getMethods();
for (PsiMethod method1 : methods) {
if (isNonVariantEquals(method1)) {
return;
}
}
registerMethodError(method);
}
private static boolean isNonVariantEquals(PsiMethod method) {
final String name = method.getName();
if (!HardcodedMethodConstants.EQUALS.equals(name)) {
return false;
}
final PsiParameterList paramList = method.getParameterList();
final PsiParameter[] parameters = paramList.getParameters();
if (parameters.length != 1) {
return false;
}
final PsiType argType = parameters[0].getType();
return TypeUtils.isJavaLangObject(argType);
}
}
}