/* * Copyright 2000-2010 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.refactoring.extractSuperclass; import com.intellij.openapi.project.Project; import com.intellij.psi.*; import com.intellij.refactoring.util.DocCommentPolicy; import com.intellij.refactoring.util.classMembers.MemberInfo; import com.intellij.util.IncorrectOperationException; /** * @author dsl */ public class ExtractSuperClassProcessor extends ExtractSuperBaseProcessor { public ExtractSuperClassProcessor(Project project, PsiDirectory targetDirectory, String newClassName, PsiClass aClass, MemberInfo[] memberInfos, boolean replaceInstanceOf, DocCommentPolicy javaDocPolicy) { super(project, replaceInstanceOf, targetDirectory, newClassName, aClass, memberInfos, javaDocPolicy); } protected PsiClass extractSuper(final String superClassName) throws IncorrectOperationException { return ExtractSuperClassUtil.extractSuperClass(myProject, myClass.getContainingFile().getContainingDirectory(), superClassName, myClass, myMemberInfos, myJavaDocPolicy); } protected boolean isSuperInheritor(PsiClass aClass) { if (!aClass.isInterface()) { return myClass.isInheritor(aClass, true); } else { return doesAnyExtractedInterfaceExtends(aClass); } } protected boolean isInSuper(PsiElement member) { if (member instanceof PsiField) { final PsiClass containingClass = ((PsiField)member).getContainingClass(); if (myClass.isInheritor(containingClass, true)) return true; final PsiField field = ((PsiField)member); return doMemberInfosContain(field); } else if (member instanceof PsiMethod) { PsiMethod method = (PsiMethod) member; final PsiClass currentSuperClass = myClass.getSuperClass(); if (currentSuperClass != null) { final PsiMethod methodBySignature = currentSuperClass.findMethodBySignature(method, true); if (methodBySignature != null) return true; } return doMemberInfosContain(method); } return false; } }