mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-12 20:07:50 +07:00
17 lines
234 B
Java
17 lines
234 B
Java
interface PsiManager {
|
|
Project getProject();
|
|
}
|
|
|
|
interface PsiElement {
|
|
Project getProject();
|
|
}
|
|
|
|
interface Project {}
|
|
|
|
|
|
public class TestCompletion {
|
|
|
|
public void method(PsiElement e, PsiManager m) {
|
|
Project p = <caret>
|
|
}
|
|
} |