views:

209

answers:

2

Is there an Eclipse IDE plugin that can generate workflow of Java code?

+3  A: 

The plugin PMD can generate an abstract syntax tree that shows bidirectional caller/callee links.

Kelly French
+1  A: 

You should check out nWire. nWire analyzes your code an presents a visual representation of all possible code associations (may be filtered).

zvikico
That's exactly what I was looking for. Many thanks.
Roman Kagan