Is there any software that can make UML diagrams from my Java code?
|
closed as not constructive by nneonneo, animuson, Roman C, mattytommo, Pragnani Mar 19 at 9:10
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
AmaterasUML is an Eclipse plugin that can take a class (or several) and generate a class diagram. Just drag their .java files onto a blank class diagram. The diagrams are static (changing the .java does not update the diagram) so I generally don't save the class diagram for long. They are mostly useful for visualization of existing code. I also find the diagrams helpful during code reviews to give an overview before diving into the code. |
|||||
|
|
A lot of UML tools support reverse engineering. Look for it in their feature list. I use Enterprise Architect, which has this functionality (though I personally never use it!). |
|||||
|
|
You have some eclipse plugins doing this. If you use eclipse, lookup eUML2 or Bordland Together. Netbeans also has a reverse engineering tool. If you don't want to depend on an IDE, StarUML also have a feature to do reverse engineering. |
||||
|
|
|
StarUML can reverse engineer Java classes to class diagrams. We used it here to generate the diagrams, so I can tell from experience it works. However, if you use generics within your code, StarUML's parser will choke on them. Maybe newer versions fixed those. |
|||||
|
|
See this page: http://plg.uwaterloo.ca/~migod/uml.html which lists some UML tools and mentions if they're free, commercial, if they're able to "reverse engineer" from source, for what language they're written, etc. Some links are not valid any more, but many of them still are. |
|||
|
|
|
On Linux, I've been pretty happy with Umbrello. |
|||
|
I like ArgoUML. |
|||||
|
|
MagicDraw UML is also can do reverse engineering |
|||
|
|
|
There are a few - I expect you'll get a lot of answers. Togeher is the best one I have used though. |
|||
|
|
Slime UML is a neat, small, free eclipse plugin that builds UML class diagrams off your code. |
|||
|
|
|
If you are using Eclipse there are several plugins to do it. Chech: http://eclipse-plugins.2y.net/eclipse/plugins.jsp?category=UML&sort=hits24h |
|||
|
|
|
JUDE Community Edition does a nice job of reverse engineering Java. It's up to JDK 5 as well. |
|||
|
|