Reputation: 1427
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:
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:
How can I get those values?
Upvotes: 1
Views: 2900
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