org.jetbrains.kotlin.asJava.FakeLightClassForFileOfPackage Maven / Gradle / Ivy
/*
* Copyright 2010-2015 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 org.jetbrains.kotlin.asJava;
import com.intellij.lang.Language;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiFile;
import com.intellij.psi.PsiManager;
import com.intellij.psi.impl.light.AbstractLightClass;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.kotlin.idea.KotlinLanguage;
import org.jetbrains.kotlin.name.FqName;
import org.jetbrains.kotlin.psi.KtClassOrObject;
import org.jetbrains.kotlin.psi.KtFile;
/**
* This class serves as a workaround for usages of {@link JavaElementFinder#findClasses} which eventually only need names of files
* containing the class. When queried for a package class (e.g. test/TestPackage), {@code findClasses} along with a
* {@link KotlinLightClassForFacade} would also return multiple instances of this class for each file present in the package. The client
* code can make use of every file in the package then, since {@code getContainingFile} of these instances will represent the whole package.
*
* See {@link LineBreakpoint#findClassCandidatesInSourceContent} for the primary usage this was introduced
*/
public class FakeLightClassForFileOfPackage extends AbstractLightClass implements KotlinLightClass, JetJavaMirrorMarker {
private final KotlinLightClassForFacade delegate;
private final KtFile file;
public FakeLightClassForFileOfPackage(
@NotNull PsiManager manager, @NotNull KotlinLightClassForFacade delegate, @NotNull KtFile file
) {
super(manager);
this.delegate = delegate;
this.file = file;
}
@Nullable
@Override
public KtClassOrObject getOrigin() {
return null;
}
@Override
public PsiFile getContainingFile() {
return file;
}
@Override
public boolean isValid() {
// This is intentionally false to prevent using this as a real class
return false;
}
@NotNull
@Override
public FqName getFqName() {
return delegate.getFqName();
}
@NotNull
@Override
public PsiClass getDelegate() {
return delegate;
}
@NotNull
@Override
public PsiElement copy() {
return new FakeLightClassForFileOfPackage(getManager(), delegate, file);
}
@Override
public String getText() {
return null;
}
@NotNull
@Override
public Language getLanguage() {
return KotlinLanguage.INSTANCE;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof FakeLightClassForFileOfPackage)) return false;
FakeLightClassForFileOfPackage other = (FakeLightClassForFileOfPackage) obj;
return file == other.file && delegate.equals(other.delegate);
}
@Override
public int hashCode() {
return file.hashCode() * 31 + delegate.hashCode();
}
}