0

Is there any softtware to create Class diagram, Activity diagram,Sequence diagram and any other related diagrams using JAVA Source code.

Roman C
  • 49,761
  • 33
  • 66
  • 176

2 Answers2

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