Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any software that can make UML diagrams from my Java code?

share|improve this question
what type of UML diagram do you want? Static class diagram? – serg10 Nov 6 '09 at 12:41
Very similar to question: stackoverflow.com/questions/737431/… – alepuzio Nov 6 '09 at 14:32

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.

12 Answers

up vote 11 down vote accepted

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.

share|improve this answer
thanks =) this worked just fine, easy to use and eclipse is the IDE I've been using for the project – Johannes Nov 7 '09 at 12:35
You're welcome. I should note that dragging multiple classes at once onto a diagram will connect the class images with arrows. Adding them on at a time will not. – Chris Nava Nov 8 '09 at 17:58

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!).

share|improve this answer
1  
I use Enterprise Architect also, and I've seen diagrams created by my coworkers with it using reverse engineering from Java code. I never used that feature, too many small details included. – JuanZe Nov 6 '09 at 13:11

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.

share|improve this answer

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.

share|improve this answer
starUML is very old – limjohn Sep 20 '12 at 2:18
There is WhiteStarUML, which is continuation of StarUML. sourceforge.net/projects/whitestaruml – Lukasz Czerwinski Apr 11 at 9:23

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.

share|improve this answer

On Linux, I've been pretty happy with Umbrello.

share|improve this answer
9  
ello... ello... eh... eh... eh... (sorry ;)) – Chris R Nov 6 '09 at 12:53
@Chris: i lol'ed. :) – Malax Nov 6 '09 at 13:00

I like ArgoUML.

share|improve this answer
I've had good experiences using this. But it's been a good while since I've dealt with UML. – Jon Homan Nov 6 '09 at 17:06
No copying of multiple elements at once and no undo. Or am I just not seeing it? I kind of hate it for these two things. – Ronny Brendel Jun 13 '10 at 8:17

MagicDraw UML is also can do reverse engineering

share|improve this answer

There are a few - I expect you'll get a lot of answers.

Togeher is the best one I have used though.

share|improve this answer
I have not used it for a while, but I would second that opinion. It was the best for quickly pulling up a class diagram out of a source base, even one you did not know well... – Kendall Helmstetter Gelner Nov 7 '09 at 3:09

Slime UML is a neat, small, free eclipse plugin that builds UML class diagrams off your code.

share|improve this answer

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

share|improve this answer

JUDE Community Edition does a nice job of reverse engineering Java. It's up to JDK 5 as well.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.