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