uml ppt

38
Introduction to UML Introduction to UML Majid Ali Khan Majid Ali Khan Spring 2005 Spring 2005

Upload: muthu

Post on 17-Nov-2014

15 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: UML PPT

Introduction to UMLIntroduction to UML

Majid Ali KhanMajid Ali Khan

Spring 2005Spring 2005

Page 2: UML PPT

AcknowledgementsAcknowledgements

Slides material are taken from Slides material are taken from different sources including:different sources including: Prashanth Aedunuthula UML Prashanth Aedunuthula UML

presentation, Fall 2004presentation, Fall 2004 Lecture slides from Software Lecture slides from Software

Engineering course at UC Berkeley Engineering course at UC Berkeley (Professor Necula – Fall 2004)(Professor Necula – Fall 2004)

Lecture slides from a course on web at:Lecture slides from a course on web at: www.sts.tu-harburg.de/ www.sts.tu-harburg.de/

teaching/ws-98.99/OOA+D/3-0-UML.pdf teaching/ws-98.99/OOA+D/3-0-UML.pdf

Page 3: UML PPT

OverviewOverview

What is Modeling?What is Modeling? What is UML?What is UML? A brief history of UMLA brief history of UML Understanding the basics of UMLUnderstanding the basics of UML UML diagrams UML diagrams UML Modeling toolsUML Modeling tools

Page 4: UML PPT

ModelingModeling

Describing a system at a high level of Describing a system at a high level of abstractionabstraction A model of the systemA model of the system Used for requirements and Used for requirements and

specificationsspecifications

Is it necessary to model software Is it necessary to model software systems?systems?

Page 5: UML PPT

Object Oriented ModelingObject Oriented Modeling

Page 6: UML PPT

What is UML?What is UML? UML stands for “Unified Modeling Language”UML stands for “Unified Modeling Language”

It is a industry-standard graphical language for It is a industry-standard graphical language for specifying, visualizing, constructing, and specifying, visualizing, constructing, and documenting the artifacts of software systemsdocumenting the artifacts of software systems

The UML uses mostly graphical notations to The UML uses mostly graphical notations to express the OO analysis and design of software express the OO analysis and design of software projects.  projects. 

Simplifies the complex process of software designSimplifies the complex process of software design

Page 7: UML PPT

Why UML for ModelingWhy UML for Modeling

Use graphical notation to communicate more Use graphical notation to communicate more clearly than natural language (imprecise) and clearly than natural language (imprecise) and code(too detailed).code(too detailed).

Help acquire an overall view of a system.Help acquire an overall view of a system.

UML is UML is not not dependent on any one language or dependent on any one language or technology.technology.

UML moves us from fragmentationUML moves us from fragmentation to to standardizationstandardization..

Page 8: UML PPT

History of UMLHistory of UML

Page 9: UML PPT

Types of UML DiagramsTypes of UML Diagrams

Use Case DiagramUse Case Diagram

Class DiagramClass Diagram

Sequence DiagramSequence Diagram

Collaboration DiagramCollaboration Diagram

State DiagramState Diagram

This is only a subset of diagrams … but are most This is only a subset of diagrams … but are most widely usedwidely used

Page 10: UML PPT

Use Case DiagramUse Case Diagram

Used for describing a set of user scenarios

Mainly used for capturing user requirements

Work like a contract between end user and software developers

Page 11: UML PPT

Use Case Diagram (core components)

Actors: A role that a user plays with respect to the system,including human users and other systems. e.g.,inanimate physical objects (e.g. robot); an external system that needs some information from the current system.

Use case: A set of scenarios that describing an interaction between a user

and a system, including alternatives.

System boundary: rectangle diagram representing the boundary between the actors and the system.

Page 12: UML PPT

Use Case Diagram(core relationship)

Association: communication between an actor and a use case; Represented by a solid line.

Generalization: relationship between one general use case and a special use case (used for defining special alternatives)Represented by a line with a triangular arrow head toward the parent use case.

Page 13: UML PPT

Use Case Diagram(core relationship)

Extend: a dotted line labeled <<extend>> with an arrow toward the base case. The extending use case may add behavior to the base use case. The base class declares “extension points”.

<<extend>>

Include: a dotted line labeled <<include>> beginning at base use case and ending with an arrows pointing to the include use case. The include relationship occurs when a chunk of behavior is similar across more than one use case. Use “include” in stead of copying the description of that behavior.

<<include>>

Page 14: UML PPT

Use Case DiagramsUse Case Diagrams

Library System

Borrow

Order Title

Fine Remittance

ClientEmployee

Supervisor

• A generalized description of how a system will be used. 

• Provides an overview of the intended functionality of the system

Boundary

ActorUse Case

Page 15: UML PPT

Use Case DiagramsUse Case Diagrams(cont.)(cont.)

(TogetherSoft, Inc)

Page 16: UML PPT

Use Case DiagramsUse Case Diagrams(cont.)(cont.)

•Pay Bill is a parent use case and Bill Insurance is the child use case. (generalization)

•Both Make Appointment and Request Medication include Check Patient Record as a subtask.(include)

•The extension point is written inside the base casePay bill; the extending class Defer payment adds the behavior of this extension point. (extend)

Page 17: UML PPT

Class diagramClass diagram

Used for describing Used for describing structure and structure and behaviorbehavior in the use cases in the use cases

Provide a conceptual model of the Provide a conceptual model of the system in terms of entities and their system in terms of entities and their relationshipsrelationships

Used for requirement capture, end-Used for requirement capture, end-user interactionuser interaction

Detailed class diagrams are used for Detailed class diagrams are used for developersdevelopers

Page 18: UML PPT

Class representationClass representation

Each class is represented by a rectangle subdivided into Each class is represented by a rectangle subdivided into three compartmentsthree compartments NameName AttributesAttributes OperationsOperations

Modifiers are used to indicate visibility of attributes and Modifiers are used to indicate visibility of attributes and operations.operations. ‘‘+’ is used to denote +’ is used to denote PublicPublic visibility (everyone) visibility (everyone) ‘‘#’ is used to denote #’ is used to denote ProtectedProtected visibility (friends and visibility (friends and

derived)derived) ‘‘-’ is used to denote -’ is used to denote PrivatePrivate visibility (no one) visibility (no one)

By default, attributes are hidden and operations are visible.By default, attributes are hidden and operations are visible.

Page 19: UML PPT

An example of Class An example of Class

Account_Name- Customer_Name- Balance

+addFunds( )+withDraw( )+transfer( )

Name

Attributes

Operations

Page 20: UML PPT

OO Relationships

There are two kinds of RelationshipsThere are two kinds of Relationships Generalization (parent-child Generalization (parent-child

relationship)relationship) Association (student enrolls in course)Association (student enrolls in course)

Associations can be further classified Associations can be further classified asas AggregationAggregation CompositionComposition

Page 21: UML PPT

Subtype2

Supertype

Subtype1

OO Relationships: Generalization

- Generalization expresses a parent/child relationship among related classes.

- Used for abstracting details in several layers

Regular Customer

Loyalty Customer

Customer Example:

Regular Customer

Loyalty Customer

Customer or:

Page 22: UML PPT

Represent relationship between Represent relationship between instances of classesinstances of classes Student enrolls in a courseStudent enrolls in a course Courses have studentsCourses have students Courses have examsCourses have exams Etc.Etc.

Association has two endsAssociation has two ends Role names (e.g. enrolls)Role names (e.g. enrolls) Multiplicity (e.g. One course can have many Multiplicity (e.g. One course can have many

students)students) Navigability (unidirectional, bidirectional)Navigability (unidirectional, bidirectional)

OO Relationships: Association

Page 23: UML PPT

Association: Multiplicity and RolesAssociation: Multiplicity and Roles

University Person

1

0..1

*

*

Multiplicity

Symbol Meaning

1 One and only one

0..1 Zero or one

M..N From M to N (natural language)

* From zero to any positive integer

0..* From zero to any positive integer

1..* From one to any positive integer

teacheremployer

Role

Role

“A given university groups many people; some act as students, others as teachers. A given student belongs to a single university; a given teacher may or may not be working for the university at a particular time.”

student

Page 24: UML PPT

Class DiagramClass DiagramOrder

-dateReceived-isPrepaid

-number :String-price : Money

+dispatch()+close()

Customer

-name-address

+creditRating() : String()

Corporate Customer

-contactName-creditRating-creditLimit

+remind()+billForMonth(Integer)

Personal Customer

-creditCard#

OrderLine

-quantity: Integer-price: Money

-isSatisfied: Boolean

Product* 1

1

*Employee*

{if Order.customer.creditRating is"poor", then Order.isPrepaid must

be true }

* 1

Constraint

(inside braces{}}

Operations

Attributes

Name

Association

Multiplicity: mandatory

Multiplicity: Many value

Multiplicity: optional

Generalization

[from UML Distilled Third Edition]

class

0..1

Page 25: UML PPT

Association: Model to ImplementationAssociation: Model to Implementation

Class Student {Class Student { Course enrolls[4];Course enrolls[4];}}

Class Course {Class Course {Student have[];Student have[];

}}

Student Courseenrollshas

* 4

Page 26: UML PPT

OO Relationships: Composition

Class W

Class P1 Class P2

Composition: expresses a relationship among instances of related classes. It is a specific kind of Whole-Part relationship.

It expresses a relationship where an instance of the Whole-class has the responsibility to create and initialize instances of each Part-class.

It may also be used to express a relationship where instancesof the Part-classes have privileged access or visibility tocertain attributes and/or behaviors defined by theWhole-class.

Composition should also be used to express relationship where instances of the Whole-class have exclusive access to and control of instances of the Part-classes.

Composition should be used to express a relationship wherethe behavior of Part instances is undefined without beingrelated to an instance of the Whole. And, conversely, thebehavior of the Whole is ill-defined or incomplete if one or more of the Part instances are undefined.

Whole Class

Part Classes

Automobile

Engine Transmission

Example

[From Dr.David A. Workman]

Page 27: UML PPT

OO Relationships: Aggregation

Class C

Class E1 Class E2

AGGREGATION

Aggregation: expresses a relationship among instances of related classes. It is a specific kind of Container-Containee relationship.

It expresses a relationship where an instance of the Container-class has the responsibility to hold and maintain instances of each Containee-class that have been createdoutside the auspices of the Container-class.

Aggregation should be used to express a more informalrelationship than composition expresses. That is, it is anappropriate relationship where the Container and its Containees can be manipulated independently.

Aggregation is appropriate when Container and Containees have no special access privileges to each other.

Container Class

Containee Classes

Bag

Apples Milk

Example

[From Dr.David A. Workman]

Page 28: UML PPT

Aggregation vs. CompositionAggregation vs. Composition

•CompositionComposition is really a strong form of aggregation •components have only one owner •components cannot exist independent of their owner •components live or die with their owner e.g. Each car has an engine that can not be shared with other cars.

•Aggregations may form "part of" the aggregate, but may not be essential to it. They may also exist independent of the aggregate. e.g. Apples may exist independent of the bag.

Page 29: UML PPT

Class

Reservations

Responsibility

• Keep list of reserved titles

• Handle reservation

Collaborators

• Catalog

• User session

Good Practice: CRC CardGood Practice: CRC Card

Benefits: It is easy to describe how classes work by moving cards around; allows to quickly consider alternatives.

(Class Responsibility Collaborator)

Page 30: UML PPT

Sequence Diagram(make a phone call)Sequence Diagram(make a phone call)

Caller Phone Recipient

Picks up

Dial tone

Dial

Ring notification Ring

Picks up

Hello

Page 31: UML PPT

Sequence Diagram:Object interactionSequence Diagram:Object interaction

Self-CallSelf-Call: A message that an Object sends to itself.

Condition: indicates when a message is sent. The message is sent only if the condition is true.

Iteration

Condition

A B

Synchronous

Asynchronous

Transmission delayed

Self-Call

[condition] remove()

*[for each] remove()

Page 32: UML PPT

Sequence Diagrams – Object Life SpansSequence Diagrams – Object Life Spans

CreationCreation Create messageCreate message Object life starts at that pointObject life starts at that point

ActivationActivation Symbolized by rectangular Symbolized by rectangular

stripesstripes Place on the lifeline where Place on the lifeline where

object is activated.object is activated. Rectangle also denotes when Rectangle also denotes when

object is deactivated.object is deactivated. DeletionDeletion

Placing an ‘X’ on lifelinePlacing an ‘X’ on lifeline Object’s life ends at that pointObject’s life ends at that point

Activation bar

A

BCreate

XDeletion

Return

Lifeline

Page 33: UML PPT

Sequence DiagramSequence DiagramUser Catalog Reservations

1: look up ()

2: title data ()

3: [not available] reserve title ()

4 : title returned ()

5: hold title ()

5 : title available ()

6 : borrow title ()

6 : rem ove reservation ()

•Sequence diagrams demonstrate the behavior of objects in a use case

by describing the objects and the messages they pass.

•The horizontal dimension shows the objects participating in the interaction.

•The vertical arrangement of messages indicates their order.

•The labels may contain the seq. # to indicate concurrency.

Message

Page 34: UML PPT

Interaction Diagrams: Collaboration diagramsInteraction Diagrams: Collaboration diagrams

User

Catalog

Reservations

start

1: look up2: title data

3 : [not available] reserve title

4 : title returned

5 : hold title

6 : borrow title

6: remove reservation

5: title available

•Shows the relationship between objects and the order of messages passed between them.  between them. •The objects are listed as rectangles and arrows indicate the messages being passed •The numbers next to the messages are called sequence numbers. They show the sequence of the messages as they are passed between the objects. •convey the same information as sequence diagrams, but focus on object roles instead of the time sequence.

Page 35: UML PPT

State DiagramsState Diagrams ((Billing Example)Billing Example)

State Diagrams show the sequences of states an object goes through during its life cycle in response to stimuli, together with its responses and actions; an abstraction of all possible behaviors.

Unpaid

Start End

PaidInvoice created payin

gInvoice destroying

Page 36: UML PPT

State DiagramsState Diagrams (Traffic light example)(Traffic light example)

Yellow

Red

Green

Traffic LightState

Transition

Event

Start

Page 37: UML PPT

UML Modeling ToolsUML Modeling Tools

Rational RoseRational Rose ( (www.rational.comwww.rational.com) by IBM) by IBM

TogetherSoft Control Center, Borland TogetherSoft Control Center, Borland ((http://http://

www.borland.com/together/index.htmlwww.borland.com/together/index.html))

ArgoUMLArgoUML ( (free softwarefree software)) ((http://argouml.tigris.org/http://argouml.tigris.org/ ) )

OpenSource; OpenSource; written in java written in java

Others Others ((http://www.objectsbydesign.com/tools/umltools_byCompany.htmlhttp://www.objectsbydesign.com/tools/umltools_byCompany.html ) )

Page 38: UML PPT

ReferenceReference

1. 1. UML Distilled:UML Distilled: A Brief Guide to the Standard Object Modeling Language A Brief Guide to the Standard Object Modeling LanguageMartin FowlerMartin Fowler, , Kendall ScottKendall Scott

2.2. IBM Rational IBM Rationalhttp://www-306.ibm.com/software/rational/uml/http://www-306.ibm.com/software/rational/uml/

3. 3. Practical UML --- A Hands-On Introduction for DevelopersPractical UML --- A Hands-On Introduction for Developers http://www.togethersoft.com/services/practical_guides/umlonlinecourse/http://www.togethersoft.com/services/practical_guides/umlonlinecourse/

4.4. Software Engineering Principles and Practice.Software Engineering Principles and Practice. Second Edition; Hans Second Edition; Hans van Vliet.van Vliet.

5. 5. http://www-inst.eecs.berkeley.edu/~cs169/http://www-inst.eecs.berkeley.edu/~cs169/