Bugs item #769174, was opened at 2003-07-10 08:21
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=769174&group_id=44253
Category: Debugger
Group: None
Status: Open
Resolution: None
Priority: 6
Submitted By: Neal Horowitz (nrhorowitz)
Assigned to: Nobody/Anonymous (nobody)
Summary: cannot debug final local variables from inner class
Initial Comment:
simple example:
public class Foo {
public static void main(String[] args) {
int x = 0;
new Thread() {
public void run() {
System.out.println("x = " + x);
System.out.println("I can't see x in the
interactions pane!");
}
}.start();
}
}
This is annoying, since we should be able to access x
from the inner class, but we can't. Hopefully, we can
find some way from JPDA to access x and alias it into
the interactions pane.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=769174&group_id=44253
|