mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
15 lines
186 B
Java
15 lines
186 B
Java
interface PsiElement {
|
|
PsiElement findElementAt(int offset);
|
|
}
|
|
|
|
interface PsiFile extends PsiElement {
|
|
}
|
|
|
|
public class TestCompletion(){
|
|
void m(){
|
|
PsiElement e = <caret>
|
|
}
|
|
}
|
|
|
|
|