CIOC
CIOC

Reputation: 1427

How to access objects and variables while debugging in Eclipse

I'm debugging an Eclipse project in which I have an object (specifically a ResourceDelta object), In the Variables view I can see a lot of useful information that I need but I'm not sure how to access those values, i.e. this is how my Variables view looks like while I'm debugging:

enter image description here

I need to get the newInfo and oldInfo values, but if I use the content assistant in the test1 object only this methods are available:

enter image description here

How can I get those values?

Upvotes: 1

Views: 2900

Answers (1)

Bhaskar
Bhaskar

Reputation: 7523

You can expand the tree for newinfo or oldinfo in the variables window - clicking the > just before that variable will show the details of that object , along with their values.

Upvotes: 1

Related Questions