mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
method chains completion
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
public class TestIndex {
|
||||
|
||||
public void statMethod(JarFile f) {
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
f.getEntry();
|
||||
}
|
||||
}
|
||||
|
||||
class JarFile {
|
||||
class JarEntry {
|
||||
}
|
||||
|
||||
JarEntry getEntry() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user