Introduction To UML: Jayant Shrivastava, TCS
Introduction To UML: Jayant Shrivastava, TCS
What is Modeling?
What is UML?
A brief history of UML
Understanding the basics of UML
UML diagrams
UML Modeling tools
September 6, 2010 2
Modeling
September 6, 2010 3
What is UML?
September 6, 2010 4
Why UML for Modeling ?
September 6, 2010 5
History of UML
September 6, 2010 6
Types of UML Diagrams
Use Case Diagram
Class Diagram
Sequence Diagram
Collaboration Diagram
State Diagram
September 6, 2010 7
Use Case Diagram
September 6, 2010 8
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.
September 6, 2010 9
Use Case Diagram (core relationship)
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>>
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>>
September 6, 2010 10
Use Case Diagram (core relationship)
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.
September 6, 2010 11
Use Case Diagrams
A generalized description of how a system will be used.
Provides an overview of the intended functionality of the system
Boundary Use Case
Actor
Library System
Borrow
Employee
Client
Order Title
Fine Remittance
Supervisor
September 6, 2010 12
Use Case Diagrams (cont.)
September 6, 2010 13
Use Case Diagrams (cont.)
Pay Bill is a parent use case and Bill Insurance is the child use case.
(generalization)
September 6, 2010 14
Class diagram
Used for describing structure and behavior in the use cases
September 6, 2010 15
Class representation
September 6, 2010 16
An example of Class
Name
Account_Name
- Customer_Name
Attributes
- Balance
+addFunds( ) Operations
+withDraw( )
+transfer( )
September 6, 2010 17
OO Relationships
September 6, 2010 18
OO Relationships: Generalization
Regular Loyalty
Customer Customer
Subtype1 Subtype2
or: Customer
September 6, 2010 19
OO Relationships: Association
September 6, 2010 20
Association: Multiplicity and Roles
student
1 *
University Person
0..1 *
employer teacher
Multiplicity Role
Symbol Meaning
1 One and only one
Role
0..1 Zero or one “A given university groups many people;
some act as students, others as teachers.
M..N From M to N (natural language)
A given student belongs to a single
* From zero to any positive integer university; a given teacher may or may not
0..* From zero to any positive integer be working for the university at a particular
1..* From one to any positive integer time.”
September 6, 2010 21
Class Diagram
Name Order class
-dateReceived
Multiplicity: mandatory
Attributes -isPrepaid Customer
-number :String
-price : Money
* 1 -name
-address
+dispatch() Association +creditRating() : String()
Operations +close()
1
{if Order.customer.creditRating is Generalization
"poor", then Order.isPrepaid must
be true }
September 6, 2010 22
Association: Model to Implementation
* 4
Student Course
has enrolls
• Class Student {
• Course enrolls[4];
•}
• Class Course {
• Student have[];
•}
September 6, 2010 23
OO Relationships: Composition
Composition: expresses a relationship among instances
of related classes. It is a specific kind of Whole-Part Whole Class
relationship. Class W
September 6, 2010 24
OO Relationships: Aggregation
Aggregation: expresses a relationship among instances Container Class
of related classes. It is a specific kind of Container-Containee
relationship. Class C
AGGREGATION
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 created
outside the auspices of the Container-class. Class E1 Class E2
Apples Milk
September 6, 2010 25
Aggregation vs. Composition
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.
September 6, 2010 26
Sequence Diagram (make a phone call)
Caller Phone Recipient
Picks up
Dial tone
Dial
Picks up
Hello
September 6, 2010 27
Sequence Diagram :Object interaction
Self-Call:
Self-Call A message that an A B
Object sends to itself.
Synchronous
Transmission
delayed
[condition] remove()
Condition
*[for each] remove()
Iteration
Self-Call
September 6, 2010 28
Sequence Diagrams – Object Life Spans
Creation A
Create message
Object life starts at that point
Activation Create
B
Symbolized by rectangular stripes
Place on the lifeline where object is activated.
Rectangle also denotes when object is deactivated.
Deletion
Placing an ‘X’ on lifeline
Object’s life ends at that point
Activation bar
X
Return
Deletion
Lifeline
September 6, 2010 29
Sequence Diagram
Sequence diagrams demonstrate the Us er Catalog Res ervations
interaction.
5: hold title ()
The vertical arrangement of
5 : title available ()
messages indicates their order.
The labels may contain the seq. 6 : borrow title ()
September 6, 2010 30
Interaction Diagrams: Collaboration diagrams
start
6: remove reservation
5: title available
6 : borrow title
1: look up
2: title data
4 : title returned
Catalog
5 : hold title
Shows the relationship between objects and the order of messages passed 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.
September 6, 2010 31
State Diagram (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.
Start End
Unpaid Paid
Invoice created payin Invoice destroying
g
September 6, 2010 32
State Diagrams (Traffic light example)
Yellow
Green
Event
September 6, 2010 33
UML Modeling Tools
Others (http://www.objectsbydesign.com/tools/umltools_byCompany.html )
September 6, 2010 34
THANK YOU
September 6, 2010 35