user691197
user691197

Reputation: 1009

Java API to create UML diagrams

Is there any Java API (Opensource) that can be used in drawing/creating UML diagrams.

JFreeChart is a Java API to draw charts/bars/graphs, similarly is there any tool to draw UML diagrams using Java ?

Upvotes: 1

Views: 4077

Answers (4)

mmansoor
mmansoor

Reputation: 620

I was looking for a similar thing and then I found about this open source project called PlantUML. They have some good example and pretty much cover everything that you may have wanted.

Upvotes: 0

Jordi Cabot
Jordi Cabot

Reputation: 8238

You could check the EMF-based implementation of the UMLTM 2.4.1 metamodel for the Eclipse platform.

This will allow you to create the UML diagrams. Then you could use any EMF-UML compatible tool to visualize them

Upvotes: 0

vainolo
vainolo

Reputation: 6987

If you want to create class diagrams, this tutorial shows how to do it with eclipse draw2d.

Upvotes: 0

posdef
posdef

Reputation: 6562

Perhaps not specifically for UML diagrams but I have been using JUNG to create hierarchical graphs and am very happy with it. Take a look at the examples they have and see if it's useful for you.

Upvotes: 2

Related Questions