Skip to main content



      Home
Home » Language IDEs » Java Development Tools (JDT) » Track an Object
Track an Object [message #260781] Tue, 23 June 2009 13:33
Eclipse UserFriend
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!
Previous Topic:Correct instantiation and configuring of JavaSourceViewer
Next Topic:debugger stopping at a breakpoint that is not set
Goto Forum:
  


Current Time: Tue Jun 24 01:57:40 EDT 2025

Powered by FUDForum. Page generated in 0.49456 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top