java - Create one big UML diagram from source with doxygen -
i using doxygen dot in order create uml diagram of java project. when run doxygen creates lot of .png uml files of specifiy classes not 1 "big" uml diagramm classes + member functions etc. shown.
is possible generate this? , if yes, how?
to have 1 big diagram classes, need in doxyfile enablegraphical_hierarchy
, have_dots
.
# if set have_dot tag yes doxygen assume dot tool # available path. tool part of graphviz, graph visualization # toolkit at&t , lucent bell labs. other options in section # have no effect if option set no (the default) have_dot = yes # if graphical_hierarchy , have_dot tags set yes doxygen # generate graphical hierarchy of classes instead of textual one. graphical_hierarchy = yes
additionally, there also
# if uml_look tag set yes doxygen generate inheritance , # collaboration diagrams in style similar omg's unified modeling # language. uml_look = yes
Comments
Post a Comment