Is there any softtware to create Class diagram, Activity diagram,Sequence diagram and any other related diagrams using JAVA Source code.
Asked
Active
Viewed 359 times
0
-
ArgoUML has an extension argouml-java: http://argouml-java.tigris.org/ – Maroun Apr 01 '13 at 12:05
-
most software that make such things not opensource – Aliaksei Bulhak Apr 01 '13 at 12:12
2 Answers
1
Most UML tools can import source code and generate class diagrams. Which tool are you using?
Sequence diagrams are more problematic, because you actually have to run the code.
IntelliJ enterprise edition, the best IDE in the world from JetBrains, can do both for you.

duffymo
- 305,152
- 44
- 369
- 561
0
You can generate UML diagrams as XMI (http://en.wikipedia.org/wiki/XML_Metadata_Interchange) with Java and then process it with some tool that supports XMI.

Evgeniy Dorofeev
- 133,369
- 30
- 199
- 275