mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
16 lines
269 B
Java
16 lines
269 B
Java
interface PsiMember {
|
|
PsiClass getContainingClass();
|
|
}
|
|
|
|
interface PsiMethod extends PsiMember {
|
|
}
|
|
|
|
interface PsiClass {}
|
|
|
|
public class TestCompletion {
|
|
public void method() {
|
|
PsiMethod psiMethod = null;
|
|
PsiClass c = psiMethod.getContainingClass()
|
|
}
|
|
}
|