Hi again,
thanks for the help. But i could't make it work...
I have the following:
import java.util.*;
[...]
Enumeration enum;
enum.
[...]
I place the cursor next to the dot in 'enum' and type 'C-cC-vC-.' and
nothing appends...
I'm quite new to emacs so maybe i'm doing something wrong...
Regards,
Sergio Nunes
On Thu, 27 Jan 2000 10:18:32 -0500 Paul Kinnucan wrote:
> At 09:44 AM 1/27/00 +0000, you wrote:
> >Hi,
> >i've just installed JDE in my emacs and i was wondering if JDE can do
> the
> >following. Can i configure it to auto-complete (or list) the methods
> >available to a variable.
> >JDE would check the type of the variable and list the methods available
> to
> >it. I've used this feature in 'anyj' but this program is to slow (java
> >version :-)) so i'd like to change to JDE.
> >
>
> Place cursor at end of partially completed field or method name and type
> C-c C-v C-.
>
> Note, due to a bug in the JDE "intellisense" code, the current source
> file
> must have an import statement for its own package, e.g.
>
> package mypackage;
> import mypackage.*;
>
> in order to complete fields and methods for classes defined by the
> current
> package. Also, note that the completion facility is based on Java
> reflection and hence works only for compiled classes.
>
> - Paul
>