Creating a sequence diagram not from the current code

Is it possible to generate a sequence diagram from non-running code in enterprise architecture? I know that this is possible from running the code, but my code is just a library and cannot run it. Thank you I have all the .cs files

+4
source share
2 answers

Unfortunately not. To automatically generate a sequence diagram, you need to run the code and record its execution in the EA runtime analyzer.

+3
source

There is a tool called phpcallgraph for encoding PHP5. You can generate call graphs without executing your code, and it is possible to create a sequence diagram using UMLGraph and GNU plotutils.

0
source

Source: https://habr.com/ru/post/1402839/


All Articles