At 07:22 PM 1/21/00 -0500, Nascif Abousalh-Neto wrote:
>Hi,
>
>I'm trying to use the new "intellisense" feature of JDE (C-c C-v C-.).
>It works fine for classes from the JDK, but not for my own classes. I
>checked and they are compiling with no errors. Any hint of what is going
>wrong? Probably some classpath variable that is not customized properly,
>I guess...
>
It only looks at explicitly imported classes and packages. Thus, to get
classes in the package to which the source file belongs, you have to "import"
the package, thus
package foo;
import foo.*;
This is a bug that will be fixed eventually.
- Paul