mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
28 lines
407 B
Java
28 lines
407 B
Java
import java.jang.String;
|
|
|
|
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
|
|
|
|
class ElementFactory {
|
|
PsiClassType createType(PsiClass c, Object obj) {
|
|
return null;
|
|
}
|
|
|
|
PsiClassType createType(PsiClass c) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class PsiClassType {}
|
|
|
|
class PsiClass {}
|
|
|
|
public class TestCompletion {
|
|
|
|
public void method(ElementFactory f) {
|
|
PsiClassType t = <caret>
|
|
}
|
|
}
|