Track an Object [message #260781] |
Tue, 23 June 2009 13:33 |
Eclipse User |
|
|
|
Dear All!
Consider the following structure:
public void someMethod(SomeObject arg){
doStuff1(arg);
doStuff2(arg.getContainer());
doStuff3(arg);
}
private void doStuff1(SomeObject param){ ... }
private void doStuff2(SomeContainer param){ ... }
private void doStuff3(SomeObject o){ ... }
I want to track the object arg sent into the someMethod, no matter where I
am.
Currently I have to promptly change my expressions from "arg" to "param"
and back, and things are even worse when I'm in doStuff2.
Is there any way to do it?
If not - can it be implemented given Java debugger limitations?
If yes - I would appreciate any hints on what's the best point to start
developing this extension.
Thank you!
|
|
|
Powered by
FUDForum. Page generated in 0.49456 seconds