jboz / plantuml-builder

Plantuml diagram from java sources
Apache License 2.0
45 stars 10 forks source link

Call sequence visualization #9

Closed S2ciOnur closed 1 year ago

S2ciOnur commented 4 years ago

The class dependencies are currently displayed very well.

but no sequence of calls is visualized. If a sequential call of classes by a starter class is crucial, it should also be visualized.

jboz commented 4 years ago

Do you have an example? I'm not sure I understood correctly.

S2ciOnur commented 4 years ago

What the PlantUML Builder gives me is this:

5f014461c4c86507

What is lost here is the sequence of events. In this example everything is controlled by "MyClass1". So the other classes are called in a certain order. So what I want to see is this:

737fa13b7d812cc4

like a Call Graph

With the framework "ClassGraph" this is possible, but here the whole package structure is displayed and therefore my graphs become unclear.