For the longest time, I've only barely used the features of JDE. I'm
now looking at it a little closer.
I'm using version 2.3.2, in Xemacs/Cygwin.
I set up a "prj.el" file, and I set the "jde-global-classpath" there, so
I could get import generation (jde-import-find-and-import) working. I
find that this works much of the time, but fails to find some classes,
but I'm not sure why.
In fact, it almost seems like it doesn't find any classes that would
have been reached by my setting of jde-global-classpath. It finds
classes in the JDK, but none in my related projects or jar files.
Here is my "prj.el" contents:
-------------
(setq jde-global-classpath
(quote
("common/cmcmbeans/build/cmcmbeans.jar"
"common/serviceregistry/build/esbserviceregistry.jar"
"CMC/common/cmcgui/build/cmcgui.jar"
"lib/weblogic.jar"
)))
-------------
These jar files all exist, relative to the directory the "prj.el" file
is in.