I am not getting the Jdb menu when I select Debug App from the JDE menu. I am
compiling with the -g option on. Here is what is listed when I try to debug:
cd /home/rbunker/SwingTutorial/Demo
jdb -classpath /home/rbunker/SwingTutorial/Demo SwingApplication
Initializing db...
>Deferring breakpoint SwingApplication.main
It will be set after the class is loaded
>run SwingApplication
>
VM started: Set deferred breakpoint request SwingApplication.45
(Line 45 is the right line number)
I am using RedHat Linux 6.1
JDE version 2.1.5
GNU Emacs version 20.4.1 (This runs under KDE)
I tried this with the following minimum .emacs file (I am NOT just showing you
the JDB parts, this is all of it)
(setq load-path
(nconc
'(
"/home/rbunker/elisp/jde-2.1.5"
)
load-path))
(require 'jde)
(custom-set-variables
'(jde-compile-option-debug (quote ("all" (t t t))))
'(jde-db-option-classpath (quote
("/home/rbunker/SwingTutorial/AppletDemo"))))
(custom-set-faces)
As a long shot I tried installing xemacs but get the error that cc-mode can't be
loaded (this happens during processing of (require 'jdb)). How can I install
cc-mode?
TIA
--ralph