Hi,
I haven't been following the list too close lately, so
I'm not sure whether this has already come up or not.
Suppose this piece of code:
ArrayList al = new ArrayList();
al.add("Hello World!");
String hello = (String)al.
Now with point after the period on the third line I
press C-c C-v C-. and get "No completion at this point" :-(
However when I alter the third line to read:
String hello = (String) al.
(note the extra space after (String)) it works quite OK.
Sine I like the coding style of the first example better I'd like
JDEE to complete there too.
Cheers,
Christian Schmitt
P.S.: After a couple of weeks of learning I must say: "JDEE rocks!".
Thanks for a great product.