After experimenting a bit more, and using Jeff Rancier's example for
inspiration, I was able to
set jde-db-source-directories in my ".emacs" file. Just in case this is
helpful to anyone, this
is what now works for me:
(custom-set-variables
'(jde-global-classpath "c:/javapkg;." )
'(jde-compiler "e:/jdk1.2.2-95/bin/javac.exe")
'(jde-compile-options "-deprecation")
'(jde-db-debugger (quote ("e:/jdk1.2.2-95/bin/jdb.exe" . "Executable")))
'(jde-run-java-vm-w "e:/jdk1.2.2-95/bin/java.exe")
'(jde-db-source-directories (quote
("c:/javapkg/Alphabet/Start;c:/javapkg")))
)
Karen Ploski