I am creating a program that will reverse engineer Java source code into a UML class diagram. I read all method names, etc. Already from the source code, but I wonder if there are built-in Java methods for creating UML, for example:
UMLdiagram u = new UMLdiagram(); Class c = new Class(); u.addClass(c);
Is there anything similar or are there any external tools that I could use to help draw a UML diagram, given that I already know the methods, class attribute names, etc.
source share