mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
15 lines
210 B
Java
15 lines
210 B
Java
interface PsiMember {
|
|
PsiClass getContainingClass();
|
|
}
|
|
|
|
interface PsiMethod extends PsiMember {
|
|
}
|
|
|
|
interface PsiClass {}
|
|
|
|
public class TestCompletion {
|
|
public void method() {
|
|
PsiClass c = <caret>
|
|
}
|
|
}
|