Reputation: 160
Could anyone explain me what is the difference between those diagram in each phase. thanks
Upvotes: -1
Views: 456
Reputation: 73406
The analysis model is meant to understand the requirements. Depending on the methodology you’re using, your sequence diagram could represent interaction:
The design model means to explain the solution that will be implemented. This means that the sequence diagram would represent interaction between classes that will make your system; not only the domain or business objects, but also internal classes that are specific to your solution (e.g. UI classes, ORM classes, etc.).
You must be aware that depending on your methodology:
UML is methodology neutral and doesn’t define this.
Upvotes: 0