Go to http://sunsite.auc.dk/jde/. Click on "Downloading the JDE". Click
on "beta release notes". Search for "JDE2.1.6beta5 Release Notes".
Scroll down. You will see the explanation and directions for using
jde-db-source-directories as well as other notes on the use of JDEbug.
In general, you should read all of the JDE release notes as there is
important information on using JDE skattered throughout. Cheers.

Chuck

-----Original Message-----
From: maierh [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 11, 2000 8:52 AM
To: jde
Cc: maierh
Subject: Questions about Debugging



Hello,

I am new to the mailing list and so I have some questions that
possibly are answered more than once. 

1.) Where can I get the tarball with the mails from the past? 

2.) I am trying to debug a small java program with more than one
  classes. In jdb I can set breakpoints. But then I continue or step
  through the programm, I get the following jde error:

  Error: could not find DebSub.java. See jde-db-source-directories.

  Is it not possible to debug classes such as DebSub?


-- Deb.java ---------------------------------
class Deb{
    public static void main( String[] args ){
        System.out.println( "Deb" );
        new DebSub();
    }
}

class DebSub{
    public DebSub(){
        System.out.println( "DebSub" );
        test();
    }
    public void test (){
        System.out.println( "DebSub.test" );
    }
    
}
----------------------------------------------

3.) How can I enable JDEbug?


Thanks in advance.

Harald

Reply via email to