IDEA-87104 Code completion should remember and prefer chosen variants

This commit is contained in:
peter
2012-06-07 15:47:16 +02:00
parent db8aadc5e3
commit afee1a2277
6 changed files with 54 additions and 23 deletions
@@ -0,0 +1,9 @@
import javax.swing.*;
public class MyFirstTestClassFoo {
void foo(JComponent c) {
c.getCom<caret>x
}
}
@@ -0,0 +1,9 @@
import javax.swing.*;
public class MyFirstTestClassFoo {
void foo(JLabel l) {
l.getCompo<caret>x
}
}