johnflan
johnflan

Reputation: 321

Are there any Eclipse plugins to display a visual object graph in debug mode?

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

Answers (2)

wrm
wrm

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

Cedric Reichenbach
Cedric Reichenbach

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

Related Questions