I’m new to UML and I’ve managed to convert the source into class diagrams which shows every class in a box. but that doesn’t seem like enough for me to understand how the functions and objects are connected.
Is that all what a programmer needs or what more can be done to better understand the information flow of their project? I’m currently working in ‘Enterprise Architect’.
I’m new to UML and I’ve managed to convert the source into class diagrams
Share
The class model (and class diagrams) only show the static structure of your code. They show nothing about interactions over time. You will want one of the behavior diagrams for that – a Sequence diagram, Activity diagram, or maybe even a State diagram.