mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
23 lines
467 B
Java
23 lines
467 B
Java
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
public class TestIndex {
|
|
|
|
public void statMethod(PsiElement e) {
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
e.getContainingClass();
|
|
}
|
|
}
|
|
|
|
interface PsiElement {
|
|
PsiClass getContainingClass();
|
|
}
|
|
|
|
interface PsiClass extends PsiElement {}
|