update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / refactoring / util / classMembers / ElementNeedsThis.java
blob97a898a3cf0bf4519ca4d3df108c10353ced2bb8
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.refactoring.util.classMembers;
18 import com.intellij.psi.*;
20 /**
21 * @author dsl
23 public class ElementNeedsThis extends ClassThisReferencesVisitor {
24 private boolean myResult = false;
25 private final PsiElement myMember;
27 public ElementNeedsThis(PsiClass aClass, PsiElement member) {
28 super(aClass);
29 myMember = member;
32 public ElementNeedsThis(PsiClass aClass) {
33 super(aClass);
34 myMember = null;
36 public boolean usesMembers() {
37 return myResult;
40 protected void visitClassMemberReferenceElement(PsiMember classMember, PsiJavaCodeReferenceElement classMemberReference) {
41 if (classMember == null || classMember.equals(myMember)) return;
42 if (classMember.hasModifierProperty(PsiModifier.STATIC)) return;
44 myResult = true;
47 protected void visitExplicitThis(PsiClass referencedClass, PsiThisExpression reference) {
48 myResult = true;
51 protected void visitExplicitSuper(PsiClass referencedClass, PsiSuperExpression reference) {
52 myResult = true;
55 @Override public void visitElement(PsiElement element) {
56 if (myResult) return;
57 super.visitElement(element);