views:

235

answers:

1

Are there any NetBeans plugins available for generating flow charts from Java code?

A: 

If you want to generate UML diagrams, you can install the UML plugin which is available in the Plugin Manager. You can generate a number of diagrams - class diagrams, activity diagrams, state diagrams, and a few more. However, I've never reverse engineered an existing Java application into anything other than a class diagram, so I'm not sure how well (or if at all) you can turn an existing application into something like an activity diagram.

Thomas Owens