Reputation: 9299
I have just started to use Eclipse for my Java programmaing. I just wonder if there is some kind of list or similar of all created objects when you runt an application? Since there are icons for methods, variables and classes in the projects Package Explorer. Thanks!
Upvotes: 0
Views: 42
Reputation: 49085
If you:
when execution reaches the breakpoint, it will pause, and Eclipse lets you interactively search through all the objects currently in scope.
Upvotes: 1