1 / 22

Drawing System Sequence Diagrams

Drawing System Sequence Diagrams. Chapter 10 Applying UML and Patterns Craig Larman. UP Artifacts. Sequence Diagrams. Shows objects and classes involved in a use case scenario Shows the messages exchanged between objects in time order sequence

guy-pruitt
Télécharger la présentation

Drawing System Sequence Diagrams

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Drawing System Sequence Diagrams Chapter 10 Applying UML and Patterns Craig Larman

  2. UP Artifacts

  3. Sequence Diagrams • Shows objects and classes involved in a use case scenario • Shows the messages exchanged between objects in time order sequence • Used in design to assign object responsibilities • Can be used test user interface requirements

  4. System Sequence Diagrams (SSDs) • SSD is an artifact of analysis that illustrates input and output events related to the system. • SSD is associated with use-case realization in the logical view of system development.

  5. SSDs and System Behavior • System behaves as “Black Box”. • Interior objects are not shown, as they would be on a Sequence Diagram. :System

  6. Use Cases are Source for SSD • Use cases describe • How actors interact with system. • Typical course of events that external actors generate and • The order of the events.

  7. SSD Components For a particular scenario of use-case an SSD shows- • The external actors that interact directly with the system. • The System (as a black box). • The system events that the actors generate.

  8. What SSDs Show • Match operations of the system in response to the events generated • Depict the temporal order of the events. • Should be done for the main success scenario of the use-case • Also for frequent and alternative scenarios

  9. Objects on SSDs • Objects are instances of classes. • Represented as a rectangle which contains the name of the object underlined • Because the system is instantiated, it is shown as an object. :Object1

  10. Actors on SSDs • Actor:An Actor is modeled using the ubiquitous symbol, the stick figure. actor1

  11. Lifelines on SSDs • LifeLine identifies the existence of the object over time. The notation for a Lifeline is a vertical dotted line extending from an object.

  12. Messages on SSDs • Messages, modeled as horizontal arrows between Activations, indicate the communications between objects. messageName(argument)

  13. Example of an SSD • Following example shows the success scenario of the Process Sale use case. • Events generated by cashier (actor)- makeNewSale enterItem endSale makePayment.

  14. SSD for Process Sale scenario

  15. Create SSDs for each Use Case • Draw a lifeline representing the system as a black box. • Identify each actor that directly operates on the system. Draw a lifeline for eachactor • From the use case happy path text, identify system (external) events that actors generate (look at right side of the flow of events). Add them as messages to diagram. • Add the main outputs from the use case as messages back to actor – see use case table • Optionally, include the use case text to the left of the diagram.

  16. SSDs are derived from use cases.

  17. System Events and System Boundary • To identify the system events, knowing the system boundary is critical. • For the purpose of software development, the system boundary is chosen to be the software system itself.

  18. Determining SSD System Boundary • Identifying the System events- • Determine the actors that directly interact with the system. • In the process Sale example, the customer does not directly interact with the POS system. Cashier interacts with the system directly. Therefore cashier is the generator of the system events.

  19. Defining system boundary.

  20. Naming System Events and Operations System event • External input event generated by an actor. • Initiates a responding operation by system. • In order to improve the clarity, it is appropriate to start the name of the system event with a verb System operation • Operation invoked in response to system event.

  21. Choosing SSD event / operation names “enterItem” is better than “scan” as it captures the intent of operation rather than what interface is used to capture the system event (design choice).

  22. SSDs in Analysis SSDs are a visualization of the interactions implied in the use cases. It is useful to createSSDs during analysis to: • Identify the system events and major operations • Write system operation contracts (Contracts describe detailed system behavior) • Provide a way for us to visually step through invocation of the operations in Use-Cases.

More Related