SlideShare a Scribd company logo
UML for Java
Programmers
Object Mentor, Inc.
Or
How Uncle Bob us e s
UML.

www.objectmentor.com

fitnesse.org

www.xprogramming

www.junit.org

Copyright © 1998-2001 by Object Mentor, Inc
All Rights Reserved
The three modes of UML
Conceptual
Tied to human language.

Specification
A description of source code yet to be written.

Implementation
A description of source code that already exists.

2
Conceptual
Tied to human language:

Animal

“An Anima l ISA Dog”
Dog

3
Hmmm…

4
Tied to human language
A n im a l

Lounge
C h a ir

Led
Z e p p lin

5

« S it s I n A »

« D r in k s A »
Dog

« G ro o ve s T o »

M a r tin i

«S m okesA »
C ig a r

{W a yL o u d }
Models of the “Real World”
Do not relate to software structure.

Now it’s time for: Uncle Bob’s rant….
Human language is not the best foundation
for software structure.
A Circle ISA Ellipse.

6
A Circle ISA Ellipse
User

E llip s e

C ir c le

7
Specification and Implementation
Are tied to code.
Follow the same rules.
Differ only in detail.
Sometimes.

8
Example:
public class TreeMap {
TreeMapNode topNode = null;
public void add(Comparable key, Object value) {…}
public Object get(Comparable key) {…}
}
class TreeMapNode {
private Comparable itsKey;
private Object itsValue;
private TreeMapNode nodes[] = new TreeMapNode[2];
public TreeMapNode(Comparable key, Object value) {…}
public Object find(Comparable key) {…}
public void add(Comparable key, Object value) {…}
}

9
Here’s some UML for that.
2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

«interface»
Comparable

itsValue
Object

10
Classes and Relationships.
Rectangles represent classes, and arrows represent relationships.

2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

11

«interface»
Comparable

Object
Associations.
In this diagram all the relationships are associations. Associations are
simple data relationships in which one object holds a reference to, and
invokes methods upon, the other.

2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

12

«interface»
Comparable

Object
Relationship Names.
The name on an association maps to the name of the
variable that holds the reference.

public class TreeMap {
TreeMapNode topNode = null;
}
2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

13

«interface»
Comparable

Object
Multiplicity.
A number next to an arrowhead typically shows the number of
instances held by the relationship. If that number is greater than
one then some kind of container, like an array, is implied.
class TreeMapNode {
private TreeMapNode nodes[] = new TreeMapNode[2];
}
2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

14

«interface»
Comparable

Object
Class Icons.
Class icons can have more than one compartment. The top compartment
always holds the name of the class. The other compartments describe
functions and variables.

2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

15

«interface»
Comparable

Object
Interface.
The «interface» notation means that Comparable is an interface.

2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

16

«interface»
Comparable

Object
Optional.
Most of the notations shown are optional
Uncle Bob is going to ra nt a ga in…
2
TreeMap
+ add(key, value)
+ get(key)

topNode

nodes

TreeMapNode
+ add(key, value)
+ find(key)
itsKey

itsValue

17

«interface»
Comparable

Object
<<Grimace>>.
But Uncle Bob, you didn’t ta lk a bout
Aggre ga tion or Compos ition.
Ra nt….
C ar

E n g in e

18

S te e r in g
W heel
Object Diagrams.
:TreeMap

topNode
:TreeMapNode
- itsKey = "Martin"

nodes[LESS]

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

19

nodes[GREATER]

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Freeze Frame.
It shows a set of objects and relationships at a particular moment in the
execution of the system. You can view it as a snapshot of memory.

:TreeMap

topNode
:TreeMapNode
- itsKey = "Martin"

nodes[LESS]

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

20

nodes[GREATER]

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Object Names are Underlined.
the rectangle icons represent objects. You can tell that they are
objects because their names are underlined.

:TreeMap

topNode
:TreeMapNode
- itsKey = "Martin"

nodes[LESS]

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

21

nodes[GREATER]

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Object : Class
The name after the colon is the name of the
class that the object belongs to.
:TreeMap

topNode
:TreeMapNode
- itsKey = "Martin"

nodes[LESS]

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

22

nodes[GREATER]

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Values.
Note that the lower compartment of each object
shows the value of that object’s itsKey variable.
:TreeMap

topNode
:TreeMapNode
- itsKey = "Martin"

nodes[LESS]

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

23

nodes[GREATER]

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Links.
The relationships between the objects are called
links, and are derived from the associations.

:TreeMap
2
TreeMap
+ add(key, value)
+ get(key)

topNode

topNode

nodes

TreeMapNode

:TreeMapNode

+ add(key, value)
+ find(key)

- itsKey = "Martin"

itsKey

«interface»
Comparable

nodes[LESS]
itsValue

Object

nodes[GREATER]

:TreeMapNode

:TreeMapNode

- itsKey = "Bob"

- itsKey = "Robin"

nodes[LESS]

nodes[LESS]

:TreeMapNode

24

nodes[GREATER]
:TreeMapNode

:TreeMapNode

:TreeMapNode

- itsKey = "Alan"

- itsKey = "Don"

- itsKey = "Paul"

- itsKey = "Sam"

nodes[GREATER]
Sequence Diagrams.
public void add(Comparable key,Object value){
if (topNode == null)
topNode = new TreeMapNode(key, value);
else
topNode.add(key, value);
}
:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

25

[topNode != null]
Actor.
The stick figure (actor) represents an
unknown caller.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

26

[topNode != null]
Lifelines.
The dashed lines are lifelines, they
show the lifetime of the objects they
descend from.
:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

27

[topNode != null]
Messages.
The long arrows are messages sent
between the objects.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

28

[topNode != null]
Guards.
The boolean expressions inside square brackets are
called guards. They show which path is taken.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

29

[topNode != null]
Construction.
The message arrow that terminates on the
TreeMapNode icon represents construction.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

30

[topNode != null]
Data Tokens
The little arrows with circles are called data tokens.
They show any arguments or return values.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

31

[topNode != null]
Activations.
The skinny rectangle below TreeMap is called
an activation. It depicts how much time the add
method executes.

:TreeMap
add(key, value)

value

key

[topNode == null]

topNode:
TreeMapNode

add(key, value)

32

[topNode != null]
Collaboration Diagrams.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

33
Same data as Sequence Diagrams.
Collaboration diagrams make the
relationships between the objects clear.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

34
Links (again).
The objects are connected by relationships called
links. A link exists wherever one object can send a
message to another.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

35
Messages.
Traveling over those links are the messages
themselves. They are depicted as the smaller arrows.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

36
Message Labels.
The messages are labeled with the name of
the message, its sequence number, and any
guards that apply.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

37
Sequence Numbers.
The dot structure of the sequence number
shows the calling hierarchy.
1: add(key, value)
:TreeMap

[topNode != null]
1.1:add(key, value)
topNode
:TreeMapNode

38
State Diagrams.
A Subway Turnstile.

coin / Unlock
pass / Alarm

Locked

pass / Lock

39

Unlocked

coin / Thankyou
States.
There are two states named
Locked and Unlocked.

coin / Unlock
pass / Alarm

Locked

pass / Lock

40

Unlocked

coin / Thankyou
Events.
Two events may be sent to the machine.
The coin event means that the user has dropped a
coin into the turnstile.
The pass event means that the user has passed
through the turnstile.

coin / Unlock
pass / Alarm

Locked

pass / Lock

41

Unlocked

coin / Thankyou
Transitions.
The arrows are called transitions. They are labeled with
the event that triggers the transition and the action that
the transition performs.

coin / Unlock
pass / Alarm

Locked

pass / Lock

42

Unlocked

coin / Thankyou
Interpretation.
If we are in the Locked state and we get a coin event, then we transition to
the Unlocked state and we invoke the Unlock function.
If we are in the Unlocked state and we get a pass event, then we transition
to the Locked state and we invoke the Lock function.
If we are in the Unlocked state and we get a coin event, then we stay in the
Unlocked state and we call the Thankyou function.
If we are in the Locked state and we get a pass event, then we stay in the
Locked state and we call the Alarm function.

pass / Alarm

Locked

coin / Unlock

pass / Lock

43

Unlocked

coin / Thankyou
Sufficiency.
The diagrams shown in this chapter are enough
for most purposes.
Most programmers could live without any more
knowledge of UML that what is shown here.

44
Tools.
Now ask me what I think about tools…..

45
Documentation.

46
Where to get this presentation.

47
Ad

Recommended

R lecture oga
R lecture oga
Osamu Ogasawara
 
Ggplot2 v3
Ggplot2 v3
Josh Doyle
 
List and Dictionary in python
List and Dictionary in python
Sangita Panchal
 
A tour of Python
A tour of Python
Aleksandar Veselinovic
 
Python
Python
Sangita Panchal
 
Python dictionaries
Python dictionaries
Krishna Nanda
 
Why async and functional programming in PHP7 suck and how to get overr it?
Why async and functional programming in PHP7 suck and how to get overr it?
Lucas Witold Adamus
 
R for Pythonistas (PyData NYC 2017)
R for Pythonistas (PyData NYC 2017)
Christopher Roach
 
R learning by examples
R learning by examples
Michelle Darling
 
First few months with Kotlin - Introduction through android examples
First few months with Kotlin - Introduction through android examples
Nebojša Vukšić
 
Python : Dictionaries
Python : Dictionaries
Emertxe Information Technologies Pvt Ltd
 
Pandas Series
Pandas Series
Sangita Panchal
 
Data Analysis and Programming in R
Data Analysis and Programming in R
Eshwar Sai
 
Monads and Monoids by Oleksiy Dyagilev
Monads and Monoids by Oleksiy Dyagilev
JavaDayUA
 
DataFrame in Python Pandas
DataFrame in Python Pandas
Sangita Panchal
 
Mysql Performance Optimization Indexing Algorithms and Data Structures
Mysql Performance Optimization Indexing Algorithms and Data Structures
Abhijit Mondal
 
The Curious Clojurist - Neal Ford (Thoughtworks)
The Curious Clojurist - Neal Ford (Thoughtworks)
jaxLondonConference
 
R Workshop for Beginners
R Workshop for Beginners
Metamarkets
 
Data Visualization 2020_21
Data Visualization 2020_21
Sangita Panchal
 
Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?
Jesper Kamstrup Linnet
 
R basics
R basics
Sagun Baijal
 
R programming intro with examples
R programming intro with examples
Dennis
 
Scala best practices
Scala best practices
Alexander Zaidel
 
Useful functions for arrays in php
Useful functions for arrays in php
Chetan Patel
 
Advanced geoprocessing with Python
Advanced geoprocessing with Python
Chad Cooper
 
Python programming : Strings
Python programming : Strings
Emertxe Information Technologies Pvt Ltd
 
Python programming : Standard Input and Output
Python programming : Standard Input and Output
Emertxe Information Technologies Pvt Ltd
 
CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38
Bilal Ahmed
 
Interaction overview and Profile UML Diagrams
Interaction overview and Profile UML Diagrams
Husnain Safdar
 
31 uml
31 uml
sshashib
 

More Related Content

What's hot (20)

R learning by examples
R learning by examples
Michelle Darling
 
First few months with Kotlin - Introduction through android examples
First few months with Kotlin - Introduction through android examples
Nebojša Vukšić
 
Python : Dictionaries
Python : Dictionaries
Emertxe Information Technologies Pvt Ltd
 
Pandas Series
Pandas Series
Sangita Panchal
 
Data Analysis and Programming in R
Data Analysis and Programming in R
Eshwar Sai
 
Monads and Monoids by Oleksiy Dyagilev
Monads and Monoids by Oleksiy Dyagilev
JavaDayUA
 
DataFrame in Python Pandas
DataFrame in Python Pandas
Sangita Panchal
 
Mysql Performance Optimization Indexing Algorithms and Data Structures
Mysql Performance Optimization Indexing Algorithms and Data Structures
Abhijit Mondal
 
The Curious Clojurist - Neal Ford (Thoughtworks)
The Curious Clojurist - Neal Ford (Thoughtworks)
jaxLondonConference
 
R Workshop for Beginners
R Workshop for Beginners
Metamarkets
 
Data Visualization 2020_21
Data Visualization 2020_21
Sangita Panchal
 
Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?
Jesper Kamstrup Linnet
 
R basics
R basics
Sagun Baijal
 
R programming intro with examples
R programming intro with examples
Dennis
 
Scala best practices
Scala best practices
Alexander Zaidel
 
Useful functions for arrays in php
Useful functions for arrays in php
Chetan Patel
 
Advanced geoprocessing with Python
Advanced geoprocessing with Python
Chad Cooper
 
Python programming : Strings
Python programming : Strings
Emertxe Information Technologies Pvt Ltd
 
Python programming : Standard Input and Output
Python programming : Standard Input and Output
Emertxe Information Technologies Pvt Ltd
 
CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38
Bilal Ahmed
 
First few months with Kotlin - Introduction through android examples
First few months with Kotlin - Introduction through android examples
Nebojša Vukšić
 
Data Analysis and Programming in R
Data Analysis and Programming in R
Eshwar Sai
 
Monads and Monoids by Oleksiy Dyagilev
Monads and Monoids by Oleksiy Dyagilev
JavaDayUA
 
DataFrame in Python Pandas
DataFrame in Python Pandas
Sangita Panchal
 
Mysql Performance Optimization Indexing Algorithms and Data Structures
Mysql Performance Optimization Indexing Algorithms and Data Structures
Abhijit Mondal
 
The Curious Clojurist - Neal Ford (Thoughtworks)
The Curious Clojurist - Neal Ford (Thoughtworks)
jaxLondonConference
 
R Workshop for Beginners
R Workshop for Beginners
Metamarkets
 
Data Visualization 2020_21
Data Visualization 2020_21
Sangita Panchal
 
Scala - en bedre og mere effektiv Java?
Scala - en bedre og mere effektiv Java?
Jesper Kamstrup Linnet
 
R programming intro with examples
R programming intro with examples
Dennis
 
Useful functions for arrays in php
Useful functions for arrays in php
Chetan Patel
 
Advanced geoprocessing with Python
Advanced geoprocessing with Python
Chad Cooper
 
CS101- Introduction to Computing- Lecture 38
CS101- Introduction to Computing- Lecture 38
Bilal Ahmed
 

Similar to Uml for Java Programmers (20)

Interaction overview and Profile UML Diagrams
Interaction overview and Profile UML Diagrams
Husnain Safdar
 
31 uml
31 uml
sshashib
 
Chapter2 bag2
Chapter2 bag2
teknik komputer ui
 
Unit 5 swing & TREES
Unit 5 swing & TREES
Sharafat Husen
 
Bao cao
Bao cao
Cương Nguyễn Bá
 
Basics of uml
Basics of uml
Naga Muruga
 
Unified Modelling Language
Unified Modelling Language
TRAN Khanh Dung, Khoa CNTT, Đại Học Xây Dựng
 
Clojure for Java developers - Stockholm
Clojure for Java developers - Stockholm
Jan Kronquist
 
Unit 1- OOAD ppt
Unit 1- OOAD ppt
PRIANKA R
 
Stuff you didn't know about action script
Stuff you didn't know about action script
Christophe Herreman
 
Java Hands-On Workshop
Java Hands-On Workshop
Arpit Poladia
 
Object oriented programming interview questions
Object oriented programming interview questions
Keet Sugathadasa
 
D9-Tree and Graph-Data-Structures information.pptx
D9-Tree and Graph-Data-Structures information.pptx
naitikchoubey70
 
Apostila UML
Apostila UML
landergustavo
 
Fundamentals of Software Engineering
Fundamentals of Software Engineering
Madhar Khan Pathan
 
Dynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship group
Reuven Lerner
 
Type script by Howard
Type script by Howard
LearningTech
 
Why clojure
Why clojure
Thomas Goossens
 
Simple uml
Simple uml
nilameganathan
 
Introduction to clojure
Introduction to clojure
Abbas Raza
 
Ad

More from QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN (11)

Introduction to Java Programming
Introduction to Java Programming
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java tutorials
Java tutorials
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java
Java
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java
Java
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java
Java
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java multi thread programming on cmp system
Java multi thread programming on cmp system
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java applets
Java applets
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Introduction to-java
Introduction to-java
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Introduction+to+java+2
Introduction+to+java+2
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Introduction to matlab
Introduction to matlab
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Threads
Threads
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Ad

Recently uploaded (20)

Peer Teaching Observations During School Internship
Peer Teaching Observations During School Internship
AjayaMohanty7
 
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
parmarjuli1412
 
Birnagar High School Platinum Jubilee Quiz.pptx
Birnagar High School Platinum Jubilee Quiz.pptx
Sourav Kr Podder
 
Vitamin and Nutritional Deficiencies.pptx
Vitamin and Nutritional Deficiencies.pptx
Vishal Chanalia
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 6-14-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 6-14-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
HistoPathology Ppt. Arshita Gupta for Diploma
HistoPathology Ppt. Arshita Gupta for Diploma
arshitagupta674
 
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Intellectual Property Right (Jurisprudence).pptx
Intellectual Property Right (Jurisprudence).pptx
Vishal Chanalia
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
Aprendendo Arquitetura Framework Salesforce - Dia 02
Aprendendo Arquitetura Framework Salesforce - Dia 02
Mauricio Alexandre Silva
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
2025 June Year 9 Presentation: Subject selection.pptx
2025 June Year 9 Presentation: Subject selection.pptx
mansk2
 
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 
Hurricane Helene Application Documents Checklists
Hurricane Helene Application Documents Checklists
Mebane Rash
 
Values Education 10 Quarter 1 Module .pptx
Values Education 10 Quarter 1 Module .pptx
JBPafin
 
Peer Teaching Observations During School Internship
Peer Teaching Observations During School Internship
AjayaMohanty7
 
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
parmarjuli1412
 
Birnagar High School Platinum Jubilee Quiz.pptx
Birnagar High School Platinum Jubilee Quiz.pptx
Sourav Kr Podder
 
Vitamin and Nutritional Deficiencies.pptx
Vitamin and Nutritional Deficiencies.pptx
Vishal Chanalia
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
HistoPathology Ppt. Arshita Gupta for Diploma
HistoPathology Ppt. Arshita Gupta for Diploma
arshitagupta674
 
Intellectual Property Right (Jurisprudence).pptx
Intellectual Property Right (Jurisprudence).pptx
Vishal Chanalia
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
Aprendendo Arquitetura Framework Salesforce - Dia 02
Aprendendo Arquitetura Framework Salesforce - Dia 02
Mauricio Alexandre Silva
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
2025 June Year 9 Presentation: Subject selection.pptx
2025 June Year 9 Presentation: Subject selection.pptx
mansk2
 
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 
Hurricane Helene Application Documents Checklists
Hurricane Helene Application Documents Checklists
Mebane Rash
 
Values Education 10 Quarter 1 Module .pptx
Values Education 10 Quarter 1 Module .pptx
JBPafin
 

Uml for Java Programmers

  • 1. UML for Java Programmers Object Mentor, Inc. Or How Uncle Bob us e s UML. www.objectmentor.com fitnesse.org www.xprogramming www.junit.org Copyright © 1998-2001 by Object Mentor, Inc All Rights Reserved
  • 2. The three modes of UML Conceptual Tied to human language. Specification A description of source code yet to be written. Implementation A description of source code that already exists. 2
  • 3. Conceptual Tied to human language: Animal “An Anima l ISA Dog” Dog 3
  • 5. Tied to human language A n im a l Lounge C h a ir Led Z e p p lin 5 « S it s I n A » « D r in k s A » Dog « G ro o ve s T o » M a r tin i «S m okesA » C ig a r {W a yL o u d }
  • 6. Models of the “Real World” Do not relate to software structure. Now it’s time for: Uncle Bob’s rant…. Human language is not the best foundation for software structure. A Circle ISA Ellipse. 6
  • 7. A Circle ISA Ellipse User E llip s e C ir c le 7
  • 8. Specification and Implementation Are tied to code. Follow the same rules. Differ only in detail. Sometimes. 8
  • 9. Example: public class TreeMap { TreeMapNode topNode = null; public void add(Comparable key, Object value) {…} public Object get(Comparable key) {…} } class TreeMapNode { private Comparable itsKey; private Object itsValue; private TreeMapNode nodes[] = new TreeMapNode[2]; public TreeMapNode(Comparable key, Object value) {…} public Object find(Comparable key) {…} public void add(Comparable key, Object value) {…} } 9
  • 10. Here’s some UML for that. 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey «interface» Comparable itsValue Object 10
  • 11. Classes and Relationships. Rectangles represent classes, and arrows represent relationships. 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 11 «interface» Comparable Object
  • 12. Associations. In this diagram all the relationships are associations. Associations are simple data relationships in which one object holds a reference to, and invokes methods upon, the other. 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 12 «interface» Comparable Object
  • 13. Relationship Names. The name on an association maps to the name of the variable that holds the reference. public class TreeMap { TreeMapNode topNode = null; } 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 13 «interface» Comparable Object
  • 14. Multiplicity. A number next to an arrowhead typically shows the number of instances held by the relationship. If that number is greater than one then some kind of container, like an array, is implied. class TreeMapNode { private TreeMapNode nodes[] = new TreeMapNode[2]; } 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 14 «interface» Comparable Object
  • 15. Class Icons. Class icons can have more than one compartment. The top compartment always holds the name of the class. The other compartments describe functions and variables. 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 15 «interface» Comparable Object
  • 16. Interface. The «interface» notation means that Comparable is an interface. 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 16 «interface» Comparable Object
  • 17. Optional. Most of the notations shown are optional Uncle Bob is going to ra nt a ga in… 2 TreeMap + add(key, value) + get(key) topNode nodes TreeMapNode + add(key, value) + find(key) itsKey itsValue 17 «interface» Comparable Object
  • 18. <<Grimace>>. But Uncle Bob, you didn’t ta lk a bout Aggre ga tion or Compos ition. Ra nt…. C ar E n g in e 18 S te e r in g W heel
  • 19. Object Diagrams. :TreeMap topNode :TreeMapNode - itsKey = "Martin" nodes[LESS] nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" 19 nodes[GREATER] - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 20. Freeze Frame. It shows a set of objects and relationships at a particular moment in the execution of the system. You can view it as a snapshot of memory. :TreeMap topNode :TreeMapNode - itsKey = "Martin" nodes[LESS] nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" 20 nodes[GREATER] - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 21. Object Names are Underlined. the rectangle icons represent objects. You can tell that they are objects because their names are underlined. :TreeMap topNode :TreeMapNode - itsKey = "Martin" nodes[LESS] nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" 21 nodes[GREATER] - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 22. Object : Class The name after the colon is the name of the class that the object belongs to. :TreeMap topNode :TreeMapNode - itsKey = "Martin" nodes[LESS] nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" 22 nodes[GREATER] - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 23. Values. Note that the lower compartment of each object shows the value of that object’s itsKey variable. :TreeMap topNode :TreeMapNode - itsKey = "Martin" nodes[LESS] nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" 23 nodes[GREATER] - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 24. Links. The relationships between the objects are called links, and are derived from the associations. :TreeMap 2 TreeMap + add(key, value) + get(key) topNode topNode nodes TreeMapNode :TreeMapNode + add(key, value) + find(key) - itsKey = "Martin" itsKey «interface» Comparable nodes[LESS] itsValue Object nodes[GREATER] :TreeMapNode :TreeMapNode - itsKey = "Bob" - itsKey = "Robin" nodes[LESS] nodes[LESS] :TreeMapNode 24 nodes[GREATER] :TreeMapNode :TreeMapNode :TreeMapNode - itsKey = "Alan" - itsKey = "Don" - itsKey = "Paul" - itsKey = "Sam" nodes[GREATER]
  • 25. Sequence Diagrams. public void add(Comparable key,Object value){ if (topNode == null) topNode = new TreeMapNode(key, value); else topNode.add(key, value); } :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 25 [topNode != null]
  • 26. Actor. The stick figure (actor) represents an unknown caller. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 26 [topNode != null]
  • 27. Lifelines. The dashed lines are lifelines, they show the lifetime of the objects they descend from. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 27 [topNode != null]
  • 28. Messages. The long arrows are messages sent between the objects. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 28 [topNode != null]
  • 29. Guards. The boolean expressions inside square brackets are called guards. They show which path is taken. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 29 [topNode != null]
  • 30. Construction. The message arrow that terminates on the TreeMapNode icon represents construction. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 30 [topNode != null]
  • 31. Data Tokens The little arrows with circles are called data tokens. They show any arguments or return values. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 31 [topNode != null]
  • 32. Activations. The skinny rectangle below TreeMap is called an activation. It depicts how much time the add method executes. :TreeMap add(key, value) value key [topNode == null] topNode: TreeMapNode add(key, value) 32 [topNode != null]
  • 33. Collaboration Diagrams. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 33
  • 34. Same data as Sequence Diagrams. Collaboration diagrams make the relationships between the objects clear. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 34
  • 35. Links (again). The objects are connected by relationships called links. A link exists wherever one object can send a message to another. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 35
  • 36. Messages. Traveling over those links are the messages themselves. They are depicted as the smaller arrows. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 36
  • 37. Message Labels. The messages are labeled with the name of the message, its sequence number, and any guards that apply. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 37
  • 38. Sequence Numbers. The dot structure of the sequence number shows the calling hierarchy. 1: add(key, value) :TreeMap [topNode != null] 1.1:add(key, value) topNode :TreeMapNode 38
  • 39. State Diagrams. A Subway Turnstile. coin / Unlock pass / Alarm Locked pass / Lock 39 Unlocked coin / Thankyou
  • 40. States. There are two states named Locked and Unlocked. coin / Unlock pass / Alarm Locked pass / Lock 40 Unlocked coin / Thankyou
  • 41. Events. Two events may be sent to the machine. The coin event means that the user has dropped a coin into the turnstile. The pass event means that the user has passed through the turnstile. coin / Unlock pass / Alarm Locked pass / Lock 41 Unlocked coin / Thankyou
  • 42. Transitions. The arrows are called transitions. They are labeled with the event that triggers the transition and the action that the transition performs. coin / Unlock pass / Alarm Locked pass / Lock 42 Unlocked coin / Thankyou
  • 43. Interpretation. If we are in the Locked state and we get a coin event, then we transition to the Unlocked state and we invoke the Unlock function. If we are in the Unlocked state and we get a pass event, then we transition to the Locked state and we invoke the Lock function. If we are in the Unlocked state and we get a coin event, then we stay in the Unlocked state and we call the Thankyou function. If we are in the Locked state and we get a pass event, then we stay in the Locked state and we call the Alarm function. pass / Alarm Locked coin / Unlock pass / Lock 43 Unlocked coin / Thankyou
  • 44. Sufficiency. The diagrams shown in this chapter are enough for most purposes. Most programmers could live without any more knowledge of UML that what is shown here. 44
  • 45. Tools. Now ask me what I think about tools….. 45
  • 47. Where to get this presentation. 47