3D-kreativ
3D-kreativ

Reputation: 9299

Overview of objects in Eclipse?

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

Answers (1)

Matt Fenwick
Matt Fenwick

Reputation: 49085

If you:

  • set a breakpoint
  • run the application in debug mode

when execution reaches the breakpoint, it will pause, and Eclipse lets you interactively search through all the objects currently in scope.

Upvotes: 1

Related Questions