SlidePub
Home
Categories
Login
Register
Home
General
Uml class Diagram
Uml class Diagram
ShubhamShah001
13,510 views
26 slides
Mar 25, 2015
Slide
1
of 26
Previous
Next
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
About This Presentation
Uml class Diagram
Size:
430.97 KB
Language:
en
Added:
Mar 25, 2015
Slides:
26 pages
Slide Content
Slide 1
© SERG Class Diagram(UML)
UML
Class Diagram
Presented By :
Kajal Waghmare
Roll No : 95
Slide 2
© SERG
What is a Class Diagram?
Class Diagram (UML)
• A Class Diagram is a diagram describing the structure of
a
system.
• It consists the :
• Classes
• Attributes
• Operations (or methods),
• Relationships among the classes.
Slide 3
© SERG Class Diagram(UML)
Classes
ClassName
attributes
operations
A class is a description of a set of
objects that share the same attributes,
operations, relationships, and semantics.
Graphically, a class is rendered as a
rectangle, usually including its name,
attributes, and operations in separate,
designated compartments.
Slide 4
© SERGClass Diagram (UML)
Class Names
ClassName
attributes
operations
The name of the class is the only required
tag in the graphical representation of a
class. It always appears in the top-most
compartment.
Slide 5
© SERGClass Diagram (UML)
Class Attributes
Person
name : String
address : Address
birthdate : Date
ssn : Id
An attribute is a named property of a
class that describes the object being modeled.
In the class diagram, attributes appear in
the second compartment just below the
name-compartment.
Slide 6
© SERGClass Diagram (UML)
Class Attributes (Cont’d)
Person
name : String
address : Address
birthdate : Date
/ age : Date
ssn : Id
Attributes are usually listed in the form:
attributeName : Type
A derived attribute is one that can be
computed from other attributes, but
doesn’t actually exist. For example,
a Person’s age can be computed from
his birth date. A derived attribute is
designated by a preceding ‘/’ as in:
/ age : Date
Slide 7
© SERGClass Diagram (UML)
Class Attributes (Cont’d)
Person
+ name : String
# address : Address
# birthdate : Date
/ age : Date
- ssn : Id
Attributes can be:
+ public
# protected
- private
/ derived
Slide 8
© SERGClass Diagram (UML)
Class Operations
Person
name : String
address : Address
birthdate : Date
ssn : Id
eat
sleep
work
play
Operations describe the class behavior
and appear in the third compartment.
Slide 9
© SERGClass Diagram (UML)
Class Responsibilities
A class may also include its responsibilities in a class diagram.
A responsibility is a contract or obligation of a class to perform
a particular service.
SmokeAlarm
Responsibilities
-- sound alert and notify guard station
when smoke is detected.
-- indicate battery state
Slide 10
© SERGClass Diagram (UML)
Relationships
In UML, object interconnections (logical or physical), are
modeled as relationships.
There are three kinds of relationships in UML:
• Dependencies
• Generalizations
• Associations
Slide 11
© SERGClass Diagram (UML)
Dependency Relationships
CourseSchedule
add(c : Course)
remove(c : Course)
Course
A dependency indicates a semantic relationship between two or
more elements. The dependency from CourseSchedule to
Course exists because Course is used in both the add and
remove operations of CourseSchedule.
Slide 12
© SERGClass Diagram (UML)
Generalization Relationships
Person
A generalization connects a subclass
to its superclass. It denotes an
inheritance of attributes and behavior
from the superclass to the subclass and
indicates a specialization in the subclass
of the more general superclass.
Student
Slide 13
© SERGClass Diagram (UML)
Generalization Relationships (Cont’d)
Student
UML permits a class to inherit from multiple superclasses,
although some programming languages (e.g., Java) do not permit
multiple inheritance.
TeachingAssistant
Employee
Slide 14
© SERGClass Diagram (UML)
Association Relationships
If two classes in a model need to communicate with each other,
there must be link between them.
An association denotes that link.
StudentInstructor
instructs
Here , an association is instructs.
Slide 15
© SERGClass Diagram (UML)
Association Relationships(Cont’d)
We can indicate the multiplicity of an association by adding
multiplicity adornments to the line denoting the association.
The example indicates that a Student has one or more
Instructors:
InstructorStudent
1..*
Slide 16
© SERGClass Diagram (UML)
Association Relationships
(Cont’d)
The example indicates that every Instructor has one or more
Students:
InstructorStudent
1..*
Slide 17
© SERGClass Diagram (UML)
Interfaces
An interface is a named set of
operations that specifies the behavior
of objects without showing their inner
structure. It can be rendered in the
model by a one- or two-compartment
rectangle, with the stereotype
<<interface>> above the interface
name.
<<interface>>
ControlPanel
Slide 18
© SERGClass Diagram (UML)
Enumeration
<<enumeration>>
Boolean
false
true
An enumeration is a user-defined
data type that consists of a name and
an ordered list of enumeration
literals.
Slide 19
© SERGClass Diagram (UML)
Packages
Compiler
A package is a container-like element
for organizing other elements into
groups.
A package can contain classes and
other packages and diagrams.
Packages can be used to provide
controlled access between classes in
different packages.
Slide 20
© SERG
Example : Ticket Sale
Software Design (UML)
Slide 21
© SERG
Quiz 1
•An __________is a user-defined data type that consists of a
name and an ordered list of enumeration literals.
Options :
1. Generalization
2. Enumeration
3. Association
4. Dependency
Class Diagram (UML)
Slide 22
© SERG
Quiz 2
•Answer of Quiz 1 : 2. Enumeration
•We can indicate the ___________of an association by
adding ___________ ___________ to the line denoting the
association.
Options:
1. Association , Association adornments
2. Multiplicity , Association adornments
3. Association , Multiplicity adornment
4. Multiplicity , Multiplicity adornments
Class Diagram (UML)
Slide 23
© SERG
Quiz 3
•Answer of Quiz 2 :4. Multiplicity , Multiplicity adornments
•_______________ denotes an inheritance of attributes and
behavior from the superclass to the subclass and indicates a
specialization in the subclass of the more general
superclass.
Options:
1. Interfaces
2. Dependency
3. Generalization
4. Packages
Class Diagram (UML)
Slide 24
© SERG
Quiz 4
•Answer of Quiz 3 : 3. Generalization
•____________ can be rendered in the model by a one- or
two-compartment rectangle, with the stereotype << >>
above the name.
Options:
1. Interface
2. Packages
3. Enumeration
4. None of these
Class Diagram (UML)
Slide 25
© SERG
Quiz 5
•Answer of Quiz 4 : All of above
•Generalization indicates a ___________in the subclass of
the more general super class.
Options:
1. Association
2. Specialization
3. Relationship
4. Link
Class Diagram (UML)
Slide 26
© SERG
•Answer of Quiz 5 : 2. Specialization
Class Diagram (UML)
Tags
uml class diagram
class diagrams
Categories
General
Download
Download Slideshow
Get the original presentation file
Quick Actions
Embed
Share
Save
Print
Full
Report
Statistics
Views
13,510
Slides
26
Favorites
34
Age
3904 days
Related Slideshows
22
Pray For The Peace Of Jerusalem and You Will Prosper
RodolfoMoralesMarcuc
30 views
26
Don_t_Waste_Your_Life_God.....powerpoint
chalobrido8
32 views
31
VILLASUR_FACTORS_TO_CONSIDER_IN_PLATING_SALAD_10-13.pdf
JaiJai148317
30 views
14
Fertility awareness methods for women in the society
Isaiah47
29 views
35
Chapter 5 Arithmetic Functions Computer Organisation and Architecture
RitikSharma297999
26 views
5
syakira bhasa inggris (1) (1).pptx.......
ourcommunity56
28 views
View More in This Category
Embed Slideshow
Dimensions
Width (px)
Height (px)
Start Page
Which slide to start from (1-26)
Options
Auto-play slides
Show controls
Embed Code
Copy Code
Share Slideshow
Share on Social Media
Share on Facebook
Share on Twitter
Share on LinkedIn
Share via Email
Or copy link
Copy
Report Content
Reason for reporting
*
Select a reason...
Inappropriate content
Copyright violation
Spam or misleading
Offensive or hateful
Privacy violation
Other
Slide number
Leave blank if it applies to the entire slideshow
Additional details
*
Help us understand the problem better