Reputation: 321
Is there any such tool for Eclipse to draw a visual graph for a given object as the root in debug mode? Something like Stan4J but more focused on objects and fields.
Upvotes: 4
Views: 1624
Reputation: 1908
There is also java spider. Not very user friendly, but you can get kind of an object graph. (btw. this is a plugin from Kent Beck and Erich Gamma...)
Upvotes: 1
Reputation: 9319
Well, there is DoodleDebug. It's not a debugger extension, but a tool with similar usage as System.out.prinln()
. You can install it as an Eclipse plugin and it comes with a short tutorial. The default representation of non-standard Java objects is printing their class name and included fields.
Upvotes: 2