mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
method chains completion
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
import java.lang.Object;
|
||||
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(ElementFactory ef) {
|
||||
ef.createType(null);
|
||||
ef.createType(null);
|
||||
ef.createType(null);
|
||||
ef.createType(null);
|
||||
ef.createType(null, null);
|
||||
ef.createType(null, null);
|
||||
ef.createType(null, null);
|
||||
ef.createType(null, null);
|
||||
}
|
||||
}
|
||||
|
||||
class ElementFactory {
|
||||
PsiClassType createType(PsiClass c, Object obj) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PsiClassType createType(PsiClass c) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class PsiClassType {}
|
||||
|
||||
class PsiClass {}
|
||||
Reference in New Issue
Block a user