Does the use of the Sequence Diagram make it necessary to model the Activity Diagram in a project?

0

Both diagrams are behavioral, but do I need to model the system's activities even though I have the sequence diagram?

    
asked by anonymous 27.07.2018 / 18:34

1 answer

0

There are two themes that are confused when compared, but there is a difference between them.

The Activity diagram is a flow chart, showing the flow of control from one activity to another. At the same time this involves modeling the sequential steps of the project.

The Sequence diagram is more concerned with the temporal ordering in which messages are exchanged between objects. These messages are the services requested from one object to another, and the responses developed for the requests.

Even though both are similar, I do not believe that one can override the existence of the other, because it is not always possible to detail the flow of activities in the sequence diagram, for example.

    
13.08.2018 / 19:13