method chains completion

This commit is contained in:
Dmitry Batkovich
2013-07-12 12:48:39 +04:00
parent 147513c0e5
commit 56f3a39c69
120 changed files with 7207 additions and 3 deletions
@@ -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;
}
}