modeling with uml chapter 2 object-oriented software engineering: using uml, patterns, and java, 2...

48
Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall, 2004.

Upload: arabella-baker

Post on 30-Dec-2015

225 views

Category:

Documents


4 download

TRANSCRIPT

Page 1: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modeling with UML

Chapter 2Object-Oriented Software Engineering:

Using UML, Patterns, and Java, 2nd EditionBy B. Bruegge and A. Dutoit

Prentice Hall, 2004.

Page 2: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 2

Modeling with UML

What is UML? Use case diagrams Class diagrams Sequence diagrams Statechart diagrams Activity diagrams

Page 3: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 3

What is modeling?

Modeling is a means of dealing with complexity. Modeling consists of building an abstraction of reality. Abstractions are simplifications because:

They ignore irrelevant details and They only represent the relevant details.

What is relevant or irrelevant depends on the purpose of the model.

Page 4: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 4

Why build models in software engineering?

Software is getting increasingly more complex Windows XP > 40 million lines of code A single programmer cannot manage this amount of code in its

entirety.

Code is not easily understandable by developers who did not write it

We need simpler representations for complex systems Modeling is a mean for dealing with complexity

Page 5: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 5

What to Model?

We need models of the application and solution domains.

Application Domain (Requirements Analysis): The environment in which the system is operating Application domain models help us define the problem

Solution Domain (System Design, Object Design): The available technologies to build the system Solution domain models help us address the problem systematically

Page 6: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 6

What is UML?

UML (Unified Modeling Language) An emerging standard for modeling object-oriented software. Resulted from the convergence of notations from three leading

object-oriented methods: OMT (James Rumbaugh) OOSE (Ivar Jacobson) Booch (Grady Booch)

Reference: http://www.uml.org Supported by several CASE tools

Rational ROSE (Rational Modular) TogetherJ

Page 7: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 7

UML: First Pass

You can model 80% of most problems by using about 20 % UML

We teach you those 20%

Page 8: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 8

UML First Pass

Use case diagrams Describe the functional behavior of the system as seen by the user.

Class diagrams Describe the static structure of the system: Objects, Attributes,

Associations Sequence diagrams

Describe the dynamic behavior between actors and the system and between objects of the system

Statechart diagrams Describe the dynamic behavior of an individual object (essentially a

finite state automaton) Activity diagrams

Model the dynamic behavior of a system, in particular the workflow (essentially a flowchart)

Page 9: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 9

UML first pass: Use case diagrams

WatchUser WatchRepairPerson

ReadTime

SetTime

ChangeBattery

Actor

Use casePackageWatch

Use case diagrams represent the functionality of the systemfrom user’s point of view

Page 10: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 10

UML first pass: Class diagrams

1

2

push()release()

1

1

blinkIdxblinkSeconds()blinkMinutes()blinkHours()stopBlinking()referesh()

LCDDisplay Batteryload

1

2

1

Timenow

1

Watch

ClassAssociation

Multiplicity

Attribute Operations

Class diagrams represent the structure of the system

state

PushButton

Page 11: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 11

UML first pass: Sequence diagram

:LCDDisplay

blinkHours()

blinkMinutes()

refresh()

commitNewTime()

:Time

incrementMinutes()

stopBlinking()

:Watch

pressButton1()

pressButton2()

pressButtons1And2()

pressButton1()

:WatchUser

Object

Message

Activation

Sequence diagrams represent the behavior as interactions

Actor

Lifeline

Page 12: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 12

UML first pass: Statechart diagrams for objects with interesting dynamic behavior

BlinkHours

BlinkMinutes

IncrementHrs

IncrementMin.

BlinkSeconds IncrementSec.

StopBlinking

[button1&2Pressed]

[button1Pressed]

[button2Pressed]

[button2Pressed]

[button2Pressed]

[button1Pressed]

[button1&2Pressed]

[button1&2Pressed]

StateInitial state

Final state

Transition

Event

Represent behavior as states and transitions

Page 13: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 13

Other UML Notations

UML provide other notations that we will be introduced in subsequent lectures, as needed.

Implementation diagrams Component diagrams Deployment diagrams

Page 14: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 14

UML Core Conventions

Rectangles are classes or instances Ovals are functions or use cases Instances are denoted with an underlined names

myWatch:SimpleWatch Joe:Firefighter

Types are denoted with non underlined names SimpleWatch Firefighter

Diagrams are graphs Nodes are entities Arcs are relationships between entities

Page 15: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 15

Use Case Diagrams

Used during requirements elicitation to represent external behavior

Actors represent roles, that is, a type of user of the system

Use cases represent a sequence of interaction for a type of functionality

The use case model is the set of all use cases. It is a complete description of the functionality of the system and its environment

Passenger

PurchaseTicket

Page 16: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 16

Actors

An actor models an external entity which communicates with the system: User External system Physical environment

An actor has a unique name and an optional description.

Examples: Passenger: A person in the train GPS satellite: Provides the system with GPS

coordinates

Passenger

Page 17: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 17

Use Case

A use case represents a class of functionality provided by the system as an event flow.

A use case consists of: Unique name Participating actors Entry conditions Flow of events Exit conditions Special requirements

PurchaseTicket

Page 18: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 18

Use Case Description: Example

Name: Purchase ticket

Participating actor: Passenger

Entry condition: Passenger standing in front of

ticket distributor. Passenger has sufficient money

to purchase ticket.

Exit condition: Passenger has ticket.

Event flow:

1. Passenger selects the number of zones to be traveled.

2. Distributor displays the amount due.

3. Passenger inserts money, of at least the amount due.

4. Distributor returns change.

5. Distributor issues ticket.

Page 19: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 19

The <<extends>> Relationship <<extends>> relationships

represent exceptional or seldom invoked cases.

The exceptional event flows are factored out of the main event flow for clarity.

Use cases representing exceptional flows can extend more than one use case.

The direction of a <<extends>> relationship is to the extended use case

Passenger

PurchaseTicket

TimeOut

<<extends>>

NoChange

<<extends>>OutOfOrder

<<extends>>

Cancel

<<extends>>

Page 20: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 20

The <<includes>> Relationship

<<includes>> relationship represents behavior that is factored out of the use case.

<<includes>> behavior is factored out for reuse, not because it is an exception.

The direction of a <<includes>> relationship is to the using use case (unlike <<extends>> relationships).

Passenger

PurchaseSingleTicket

PurchaseMultiCard

NoChange

<<extends>>

Cancel

<<extends>>

<<includes>>

CollectMoney

<<includes>>

Page 21: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 21

Use Case Diagrams: Summary

Use case diagrams represent external behavior Use case diagrams are useful as an index into the use cases Use case descriptions provide meat of model, not the use case

diagrams. All use cases need to be described for the model to be useful.

Page 22: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 22

Class Diagrams

Class diagrams represent the structure of the system. Used

during requirements analysis to model problem domain concepts during system design to model subsystems and interfaces during object design to model classes.

Enumeration getZones()Price getPrice(Zone)

TarifSchedule

* *

TripLegzone:Zone

Price: Price

Page 23: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 23

Classes

A class represent a concept A class encapsulates state (attributes) and behavior (operations). Each attribute can have a type. Each operation can have a signature. The class name is the only mandatory information.

zone2pricegetZones()getPrice()

TarifSchedule

Table zone2priceEnumeration getZones()Price getPrice(Zone)

TarifSchedule

Name

Attributes

Operations

Signature

TarifSchedule

Page 24: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 24

Instances

An instance represents a phenomenon. The name of an instance is underlined and can contain the class of the

instance. The attributes are represented with their values.

zone2price = {{‘1’, .20},{‘2’, .40},{‘3’, .60}}

tarif_1974:TarifSchedule

Page 25: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 25

PriceZone

Associations

Associations denote relationships between classes. The multiplicity of an association end denotes how many objects the source

object can legitimately reference.

Enumeration getZones()Price getPrice(Zone)

TarifSchedule TripLeg

* *

Page 26: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 26

1-to-1 and 1-to-many Associations

Country

name:String

City

name:String

Has-capital

Polygon

draw()

Point

x: Integer

y: Integer

One-to-one association

One-to-many association

*

1 1

Page 27: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 27

Many-to-Many Associations

StockExchange Company

tickerSymbol

Lists **

SX_ID

Page 28: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 28

From Problem Statement To Object Model

A stock exchange lists many companies.

Class Diagram:

StockExchange Company

tickerSymbolLists

**

Page 29: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 30

Inheritance

The children classes inherit the attributes and operations of the parent class.

Inheritance simplifies the model by eliminating redundancy.

Button

ZoneButtonCancelButton

Page 30: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 31

Aggregation

An aggregation is a special case of association denoting a “consists of” hierarchy.

The aggregate is the parent class, the components are the children class.

Exhaust system

Muffler

diameter

Tailpipe

diameter

1 0..21 1

Page 31: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 32

Packages

A package is a UML mechanism for organizing elements into groups (usually not an application domain concept)

Packages are the basic grouping construct with which you may organize UML models to increase their readability.

A complex system can be decomposed into subsystems, where each subsystem is modeled as a package

Packages show system and/or subsystem boundaries, thus clarifying the interfaces between a user and the system or between subsystems.

DispatcherInterface

Notification IncidentManagement

Page 32: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 33

UML sequence diagrams

Used during requirements analysis To refine use case descriptions to find additional objects

(“participating objects”) Used during system design

to refine subsystem interfaces Classes are represented by

columns Messages are represented by

arrows Activations are represented by

narrow rectangles Lifelines are represented by

dashed lines

selectZone()

pickupChange()

pickUpTicket()

insertCoins()

PassengerTicketMachine

Page 33: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 34

Nested activations

The source of an arrow indicates the activation which sent the message An activation is as long as all nested activations Horizontal dashed arrows indicate data flow Vertical dashed lines indicate lifelines

selectZone()

PassengerZoneButton TarifSchedule Display

lookupPrice(selection)

displayPrice(price)

price

Dataflow

…to be continued...

Page 34: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 35

Sequence Diagram Summary

UML sequence diagram represent behavior in terms of interactions.

Useful to find missing objects. Time consuming to build but worth the investment. Complement the class diagrams (which represent structure).

Page 35: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 36

State Chart Diagrams

BlinkHours

BlinkMinutes

IncrementHrs

IncrementMin.

BlinkSeconds IncrementSec.

StopBlinking

[button1&2Pressed]

[button1Pressed]

[button2Pressed]

[button2Pressed]

[button2Pressed]

[button1Pressed]

[button1&2Pressed]

[button1&2Pressed]

StateInitial state

Final state

Transition

Event

Represent behavior as states and transitions

Page 36: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 37

State Chart Elements

State A condition satisfied by the attributes of an object

Transition A change of state Triggered by events

Inside a state Activity

Behavior that is executed as long as an object resides in some state

Internal transition A transition that does not leave the state

Nested statecharts A statechart inside a state

Page 37: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 38

RingingRinging

Timeout/Keep ringing

Collecting digits

Collecting digit

Digit/Analyze digitEnough digits/Connect

State Chart Example: Making a phone call

Idle Offhook

No dialtone Dialtone

Busy

Talking

Hang up

Press digit

Line in service

Line out of service

Press digit

Circuit available

Circuit not available

Pick up

Hang up

Hang up

Pick up

Page 38: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 39

State Chart Diagrams

39

Page 39: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 40

Light Box Exercise

After On pushed but before Off pushed, system is termed “powered on.”

After Off pushed but before On pushed, system is termed “powered off.”

Since most recent On press, if Count has been pressed an odd number of times, Odd shall be lit.

Since most recent On press, if Count has been pressed an even number of times, Even shall be lit.

If either light burns on, the other light shall flash every 1 second.

40

Page 40: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 41

What does it mean to flash the bulb every 1 second?

41

Page 41: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 42

Activity Diagrams

An activity diagram shows flow control within a system

An activity diagram is a special case of a state chart diagram in which states are activities (“functions”)

Two types of states: Action state:

Cannot be decomposed any further Happens “instantaneously” with respect to the level of abstraction

used in the model Activity state:

Can be decomposed further The activity is modeled by another activity diagram

HandleIncident

DocumentIncident

ArchiveIncident

Page 42: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 43

Statechart Diagram vs. Activity Diagram

HandleIncident

DocumentIncident

ArchiveIncident

Active Inactive Closed ArchivedIncident-Handled

Incident-Documented

Incident-Archived

Statechart Diagram for Incident (similar to Mealy Automaton)(State: Attribute or Collection of Attributes of object of type Incident)

Activity Diagram for Incident (similar to Moore Automaton)

(State: Operation or Collection of Operations)

TriggerlessTransitionCompletion of activity

causes state transition

Event causesState transition

Page 43: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 44

Activity Diagram: Modeling Decisions

OpenIncident

NotifyPolice Chief

NotifyFire Chief

AllocateResources

[fire & highPriority]

[not fire & highPriority]

[lowPriority]

Page 44: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 45

Activity Diagrams: Modeling Concurrency

Synchronization of multiple activities Splitting the flow of control into multiple threads

OpenIncident

AllocateResources

CoordinateResources

DocumentIncident

ArchiveIncident

SynchronizationSplitting

Page 45: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 46

UML Summary

UML provides a wide variety of notations for representing many aspects of software development Powerful, but complex language Can be misused to generate unreadable models Can be misunderstood when using too many exotic features

For now we concentrate on a few notations: Functional model: Use case diagram Object model: class diagram Dynamic model: sequence diagrams, statechart and activity

diagrams

Page 46: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 47

Data-Flow Diagrams (DFDs)

UML does not support DFDs DFDs describe how data is processed by a system DFDs focus on system functions and their impact on data from

input to output Sequence diagrams focus on objects in a system

DFDs are intrinsic part of structured methods which do not recognize system objects

Page 47: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 48

Data-Flow Diagrams (DFDs)

Data flow diagram of the equipment procurement process

Page 48: Modeling with UML Chapter 2 Object-Oriented Software Engineering: Using UML, Patterns, and Java, 2 nd Edition By B. Bruegge and A. Dutoit Prentice Hall,

Modified from originals by Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 49

Data-Flow Diagrams (DFDs)

Data flow diagram of order processing