Hi, Do you know any nice freeware that will take my java sources and will generate class diagrams from them?
|
1
|
|||||
|
|
|
It's called UML. Knowing that keyword, you should have more success in Google. If you're using an IDE like Eclipse, you can also look for a plugin here or here. Good luck. |
||||
|
|
|
Last year, I wrote this small tool : java2dot . It generates a file for graphviz dot. See http://plindenbaum.blogspot.com/2008/10/javadoc-is-not-enough-java2dia.html
Hope it helps |
||||||
|
|
|
Netbeans has a UML plugin that can reverse engineer class diagrams from Java source. |
||
|
|
|
|
|
||
|
|
|
|
Doxygen can do that (with help from Graphviz). Looks like there's a nice tutorial for installing and configuring it, including details about annotations to use for it, here. |
|||
|
|
|
|
This may be more than what you asked for, but Doxygen use the "dot" tool from graphviz to generate class diagram along the documentation of any java application. Regards, |
||
|
|
|
|
You can try Fujaba. It supports forward engineering (UML -> Java) and reverse engineering (Java -> UML). Class diagrams are supported.
|
||
|
|
|
|
ArgoUML can create class diagrams from Java. However last time I used it (a fair time back now) it did not do all that great a job at laying it all out. |
||
|
|
|
|
If you use maven, one nice way of generating UML from your classes is by generating JavaDocs and adding the UMLGraph doclet. See the following link: http://maven.apache.org/plugins/maven-javadoc-plugin/examples/alternate-doclet.html The nice thing about this is that it becomes simple to integrate into a nightly build. |
||
|
|
|
|
Slime is a neat small UML plugin for eclipse that can draw class diagrams. |
||
|
|
|
|
AmaterasUML is a free eclipse plugin that works pretty well. You can drag and drop classes from the package explorer to the diagram, and export to png. |
||
|
|
|
|
ArgoUML is the best free UML tool. MagicDraw is the best commercial UML tool. And IDEs have plugins to create UML diagrams too (Eclipse and Netbeans to name two). |
||
|
|


