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