Bugs item #600270, was opened at 2002-08-26 15:30
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=600270&group_id=44253
Category: Debugger
Group: Annoying
Status: Open
Resolution: None
Priority: 6
Submitted By: Charles Reis (csreis)
Assigned to: Nobody/Anonymous (nobody)
Summary: No debugging in non-public class
Initial Comment:
Currently, the debugging features do not work well with
non-public classes. Breakpoints are not hit unless the
breakpoint is in the first class of the file, and
stepping is unable to find the source file for a class,
even if it is open. (For now, debugging only works
well with public classes.)
This is partly because of an incorrect assumption in
the debugger code that a class always resides in a
source file of the same name. To fix this, we'll have
to change getClassName() in DefinitionsDocument to
return the correct class name for a given position,
instead of just the first class declared. We'll also
have to find a method for locating the source file
containing a non-public class (I think there's a way to
do this using JPDA / JDI methods).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=600270&group_id=44253
|