in basic completion in java, act like smart completion for class names after new

This commit is contained in:
peter.gromov
2010-11-17 17:32:47 +03:00
parent 27fd107abc
commit 52a4227091
12 changed files with 173 additions and 31 deletions
@@ -0,0 +1,9 @@
class Foo {
{
Zzoo l = new Zz<caret>
}
}
interface Zzoo {
void run();
}