/* * Copyright 2000-2016 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.psi.impl.light; import com.intellij.lang.java.JavaLanguage; import com.intellij.openapi.util.TextRange; import com.intellij.psi.*; import com.intellij.psi.scope.PsiScopeProcessor; import com.intellij.util.IncorrectOperationException; import org.jetbrains.annotations.NotNull; abstract class LightClassReferenceBase extends LightElement implements PsiJavaCodeReferenceElement { protected final String myText; private LightReferenceParameterList myParameterList; protected LightClassReferenceBase(@NotNull PsiManager manager, @NotNull String text) { super(manager, JavaLanguage.INSTANCE); myText = text; } @Override @NotNull public JavaResolveResult[] multiResolve(boolean incompleteCode) { final JavaResolveResult result = advancedResolve(incompleteCode); if (result != JavaResolveResult.EMPTY) return new JavaResolveResult[]{result}; return JavaResolveResult.EMPTY_ARRAY; } @Override public void processVariants(@NotNull PsiScopeProcessor processor) { throw new RuntimeException("Variants are not available for light references"); } @Override public PsiElement getReferenceNameElement() { return null; } @Override public PsiReferenceParameterList getParameterList() { if (myParameterList == null) { myParameterList = new LightReferenceParameterList(myManager, PsiTypeElement.EMPTY_ARRAY); } return myParameterList; } @Override public String getQualifiedName() { PsiClass psiClass = (PsiClass)resolve(); if (psiClass != null) { return psiClass.getQualifiedName(); } return null; } @Override public String getText() { return myText; } @Override public PsiReference getReference() { return this; } @Override @NotNull public String getCanonicalText() { String name = getQualifiedName(); if (name == null) return ""; PsiType[] types = getTypeParameters(); if (types.length == 0) return name; StringBuilder buf = new StringBuilder(); buf.append(name); buf.append('<'); for (int i = 0; i < types.length; i++) { if (i > 0) buf.append(','); buf.append(types[i].getCanonicalText()); } buf.append('>'); return buf.toString(); } @Override public PsiElement handleElementRename(String newElementName) throws IncorrectOperationException { //TODO? throw new UnsupportedOperationException(); } @Override public PsiElement bindToElement(@NotNull PsiElement element) throws IncorrectOperationException { //TODO? throw new UnsupportedOperationException(); } @Override public void accept(@NotNull PsiElementVisitor visitor) { if (visitor instanceof JavaElementVisitor) { ((JavaElementVisitor)visitor).visitReferenceElement(this); } else { visitor.visitElement(this); } } public String toString() { return getClass().getSimpleName() + getText(); } @Override public boolean isReferenceTo(PsiElement element) { return element instanceof PsiClass && getManager().areElementsEquivalent(resolve(), element); } @Override @NotNull public Object[] getVariants() { throw new RuntimeException("Variants are not available for light references"); } @Override public boolean isSoft() { return false; } @Override public TextRange getRangeInElement() { return new TextRange(0, getTextLength()); } @Override public PsiElement getElement() { return this; } @Override @NotNull public PsiType[] getTypeParameters() { return PsiType.EMPTY_ARRAY; } @Override public PsiElement getQualifier() { return null; } @Override public boolean isQualified() { return false; } }