vote up 7 vote down star
6

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

flag

what type of UML diagram do you want? Static class diagram? – serg10 Nov 6 at 12:41
This needs to be a community wiki of course. – jldupont Nov 6 at 12:46
Very similar to question: stackoverflow.com/questions/737431/… – alepuzio Nov 6 at 14:32

13 Answers

vote up 2 vote down check

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.

link|flag
thanks =) this worked just fine, easy to use and eclipse is the IDE I've been using for the project – Johannes Nov 7 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 at 17:58
vote up 4 vote down

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

link|flag
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 at 13:11
vote up 4 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

I like ArgoUML.

link|flag
I've had good experiences using this. But it's been a good while since I've dealt with UML. – Jon Homan Nov 6 at 17:06
vote up 1 vote down

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

Togeher is the best one I have used though.

link|flag
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 at 3:09
vote up 1 vote down

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

link|flag
6  
ello... ello... eh... eh... eh... (sorry ;)) – Chris R Nov 6 at 12:53
@Chris: i lol'ed. :) – Malax Nov 6 at 13:00
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Why don't you just check SO topics which are tagged with the same tags? http://stackoverflow.com/questions/tagged/java+uml

link|flag
he got 7 up votes, thats why. – 01 Nov 9 at 20:47
vote up 0 vote down

MagicDraw UML is also can do reverse engineering

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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