mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-11 22:25:56 +07:00
27 lines
378 B
Java
27 lines
378 B
Java
import java.jang.String;
|
|
|
|
class PsiManager {
|
|
public static PsiManager getInstance() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
interface PsiClass {
|
|
PsiManager getManager();
|
|
}
|
|
|
|
interface PsiMethod {
|
|
PsiClass getContainingClass();
|
|
}
|
|
|
|
interface PsiMethodCallExpression {
|
|
PsiMethod resolveMethod();
|
|
}
|
|
|
|
public class TestCompletion {
|
|
|
|
public void method() {
|
|
PsiManager m = <caret>
|
|
}
|
|
}
|