SlideShare uma empresa Scribd logo
1 de 30
UML
Unified Modeling Language
What is UML?
● Unified Modeling Language (UML) is a general
purpose modelling language. The main aim of
UML is to define a standard way to visualize
the way a system has been designed. It is quite
similar to blueprints used in other fields of
engineering.
● UML is not a programming language, it is
rather a visual language. We use UML
diagrams to portray the behavior and
structure of a system.
● November 1997(1.1)UML was adopted by Object Management
Group. This was the first version of UML.
● March 2000(1.3)A minor upgrade was done to the existing model
with notable changes in semantics, notations, and meta-models
of UML.
● September 2001(1.4)This was the period of the major update to
the UML. It scaled UML by providing various extensions.
Visibility, artifact, stereotypes were introduced in diagrams.
● March 2003(1.5)Features such as procedures, data flow
mechanism were added to the UML.
History of UML
● January 2005(1.4.2)UML was accepted as a standard by ISO.
● August 2005(2.0)New diagrams such as the object, package,
timing, interaction were added to the UML. New features were
added to the activity and sequence diagrams. Collaboration
diagram was renamed as communication diagram. Multiple
features and changes were introduced in the existing diagrams.
● April 2006(2.1)Corrections were made to the UML 2.0.
● February 2007(2.1.1)Upgrades were introduced in the UML 2.1.
History of UML
● November 2007(2.1.2)UML 2.1.1 was redefined.
● February 2009(2.2)UML 2.1.2 bugs were fixed.
● May 2010(2.3)UML 2.2 was revised, and minor changes were made
to the component diagrams.
● August 2011(2.4.1)Classes, packages, and stereotypes changes
were made. UML 2.3 was revised with enhancement features.
● June 2015(2.5)UML 2.4.1 was revised with minor changes. UML
was made simple than it was before. Rapid functioning and the
generation of more effective models were introduced. Outdated
features were eliminated. Models, templates were eliminated as
auxiliary constructs.
History of UML
Class – A class defines the blue print i.e. structure and functions of
an object.
Objects – Objects help us to decompose large systems and help
us to modularize our system. Modularity helps to divide our system
into understandable components so that we can build our system
piece by piece. An object is the fundamental unit (building block) of
a system which is used to depict an entity.
Inheritance – Inheritance is a mechanism by which child classes
inherit the properties of their parent classes.
Object Oriented Concepts Used in UML
Abstraction – Mechanism by which implementation details are
hidden from user.
Encapsulation – Binding data together and protecting it from the
outer world is referred to as encapsulation.
Polymorphism – Mechanism by which functions or entities are
able to exist in different forms.
Object Oriented Concepts Used in UML
1. Structural Diagrams – Capture static aspects or structure of a
system. Structural Diagrams include: Component Diagrams, Object
Diagrams, Class Diagrams and Deployment Diagrams.
1. Behavior Diagrams – Capture dynamic aspects or behavior of the
system. Behavior diagrams include: Use Case Diagrams, State
Diagrams, Activity Diagrams and Interaction Diagrams.
Diagrams in UML can be broadly classified as:
Class Diagram – UML class diagrams: Class diagrams are the main
building blocks of every object-oriented method. The class diagram
can be used to show the classes, relationships, interface, association,
and collaboration. UML is standardized in class diagrams. Since
classes are the building block of an application that is based on
OOPs, so as the class diagram has an appropriate structure to
represent the classes, inheritance, relationships, and everything that
OOPs have in their context. It describes various kinds of objects and
the static relationship between them.
The main purpose to use class diagrams are:
This is the only UML that can appropriately depict various aspects of
the OOPs concept.
Structural UML Diagrams
The main purpose to use class diagrams are:
● This is the only UML that can appropriately depict various
aspects of the OOPs concept.
● Proper design and analysis of applications can be faster and
efficient.
● It is the base for deployment and component diagram.
● There are several software available that can be used online and
offline to draw these diagrams Like Edraw max, lucid chart, etc.
Structural UML Diagrams
Each class is represented by a rectangle having a subdivision of
three compartments name, attributes, and operation.
There are three types of modifiers that are used to decide the
visibility of attributes and operations.
● + is used for public visibility(for everyone)
● # is used for protected visibility (for friend and derived)
● – is used for private visibility (for only me)
Structural UML Diagrams
Example of Animal class (parent) having two child class as dog and
cat
Structural UML Diagrams
Composite Structure Diagram – We use composite structure
diagrams to represent the internal structure of a class and its
interaction points with other parts of the system. A composite
structure diagram represents relationship between parts and their
configuration which determine how the classifier (class, a
component, or a deployment node) behaves. They represent internal
structure of a structured classifier making the use of parts, ports, and
connectors. We can also model collaborations using composite
structure diagrams. They are similar to class diagrams except they
represent individual parts in detail as compared to the entire class.
Structural UML Diagrams
Object Diagram – An Object Diagram can be referred to as a
screenshot of the instances in a system and the relationship that
exists between them. Since object diagrams depict behaviour when
objects have been instantiated, we are able to study the behavior of
the system at a particular instant. Object diagrams are vital to
portray and understand functional requirements of a system.
In other words, “An object diagram in the Unified Modeling Language
(UML), is a diagram that shows a complete or partial view of the
structure of a modeled system at a specific time.”
Structural UML Diagrams
Difference between an Object and a Class Diagram –
An object diagram is similar to a class diagram except it shows the
instances of classes in the system. We depict actual classifiers and
their relationships making the use of class diagrams. On the other
hand, an Object Diagram represents specific instances of classes and
relationships between them at a point of time.
What is a classifier?
In UML a classifier refers to a group of elements that have some
common features like methods, attributes and operations. A
classifier can be thought of as an abstract metaclass which draws a
boundary for a group of instances having common static and
dynamic features.
Structural UML Diagrams
For example, we refer a class, an object, a component, or a
deployment node as classifiers in UML since they define a common
set of properties.
An Object Diagram is a structural diagram which uses notation
similar to that of class diagrams. We are able to design object
diagrams by instantiating classifiers.
Object Diagrams use real world examples to depict the nature and
structure of the system at a particular point in time. Since we are
able to use data available within objects, Object diagrams provide a
clearer view of the relationships that exist between objects.
Structural UML Diagrams
Composite Structure Diagram – We use composite structure
diagrams to represent the internal structure of a class and its
interaction points with other parts of the system. A composite
structure diagram represents relationship between parts and their
configuration which determine how the classifier (class, a
component, or a deployment node) behaves. They represent internal
structure of a structured classifier making the use of parts, ports, and
connectors. We can also model collaborations using composite
structure diagrams. They are similar to class diagrams except they
represent individual parts in detail as compared to the entire class.
Structural UML Diagrams
Structural UML Diagrams
Component Diagram – Component diagrams are used to represent
the how the physical components in a system have been organized.
We use them for modelling implementation details. Component
Diagrams depict the structural relationship between software
system elements and help us in understanding if functional
requirements have been covered by planned development.
Component Diagrams become essential to use when we design and
build complex systems. Interfaces are used by components of the
system to communicate with each other.
Structural UML Diagrams
Deployment Diagram – Deployment Diagrams are used to represent
system hardware and its software.It tells us what hardware
components exist and what software components run on them.We
illustrate system architecture as distribution of software artifacts
over distributed targets. An artifact is the information that is
generated by system software. They are primarily used when a
software is being used, distributed or deployed over multiple
machines with different configurations.
Structural UML Diagrams
State Machine Diagrams – A state diagram is used to represent the
condition of the system or part of the system at finite instances of
time. It’s a behavioral diagram and it represents the behavior using
finite state transitions. State diagrams are also referred to as State
machines and State-chart Diagrams. These terms are often used
interchangeably. So simply, a state diagram is used to model the
dynamic behavior of a class in response to time and changing
external stimuli. We can say that each and every class has a state but
we don’t model every class using State diagrams. We prefer to
model the states with three or more states.
Behavior UML Diagrams
Uses of statechart diagram –
We use it to state the events responsible for change in state (we do
not show what processes cause those events).
We use it to model the dynamic behavior of the system .
To understand the reaction of objects/classes to internal or external
stimuli.
Firstly let us understand what are Behavior diagrams? There are two
types of diagrams in UML :
Structure Diagrams – Used to model the static structure of a system,
for example- class diagram, package diagram, object diagram,
deployment diagram etc.
Behavior UML Diagrams
Behavior diagram – Used to model the dynamic change in the
system over time. They are used to model and construct the
functionality of a system. So, a behavior diagram simply guides us
through the functionality of the system using Use case diagrams,
Interaction diagrams, Activity diagrams and State diagrams.
Difference between state diagram and flowchart –
The basic purpose of a state diagram is to portray various changes in
state of the class and not the processes or commands causing the
changes. However, a flowchart on the other hand portrays the
processes or commands that on execution change the state of class
or an object of the class.
Behavior UML Diagrams
Activity Diagrams – We use Activity Diagrams to illustrate the flow of
control in a system. We can also use an activity diagram to refer to
the steps involved in the execution of a use case. We model
sequential and concurrent activities using activity diagrams. So, we
basically depict workflows visually using an activity diagram.An
activity diagram focuses on condition of flow and the sequence in
which it happens. We describe or depict what causes a particular
event using an activity diagram
Behavior UML Diagrams
Use Case Diagrams – Use Case Diagrams are used to depict the
functionality of a system or a part of a system. They are widely used
to illustrate the functional requirements of the system and its
interaction with external agents(actors). A use case is basically a
diagram representing different scenarios where the system can be
used. A use case diagram gives us a high level view of what the
system or a part of the system does without going into
implementation details.
Behavior UML Diagrams
Sequence Diagram – A sequence diagram simply depicts interaction
between objects in a sequential order i.e. the order in which these
interactions take place.We can also use the terms event diagrams or
event scenarios to refer to a sequence diagram. Sequence diagrams
describe how and in what order the objects in a system function.
These diagrams are widely used by businessmen and software
developers to document and understand requirements for new and
existing systems.
Behavior UML Diagrams
Communication Diagram – A Communication Diagram(known as
Collaboration Diagram in UML 1.x) is used to show sequenced
messages exchanged between objects. A communication diagram
focuses primarily on objects and their relationships. We can
represent similar information using Sequence diagrams,however,
communication diagrams represent objects and links in a free form.
Behavior UML Diagrams
Timing Diagram – Timing Diagram are a special form of Sequence
diagrams which are used to depict the behavior of objects over a
time frame. We use them to show time and duration constraints
which govern changes in states and behavior of objects.
Interaction Overview Diagram – An Interaction Overview Diagram
models a sequence of actions and helps us simplify complex
interactions into simpler occurrences. It is a mixture of activity
and sequence diagrams.
Behavior UML Diagrams
Composite Structure Diagram – We use composite structure
diagrams to represent the internal structure of a class and its
interaction points with other parts of the system. A composite
structure diagram represents relationship between parts and their
configuration which determine how the classifier (class, a
component, or a deployment node) behaves. They represent internal
structure of a structured classifier making the use of parts, ports, and
connectors. We can also model collaborations using composite
structure diagrams. They are similar to class diagrams except they
represent individual parts in detail as compared to the entire class.
Behavior UML Diagrams
● Complex applications need collaboration and planning from
multiple teams and hence require a clear and concise way to
communicate amongst them.
● Businessmen do not understand code. So UML becomes
essential to communicate with non programmers essential
requirements, functionalities and processes of the system.
● A lot of time is saved down the line when teams are able to
visualize processes, user interactions and static structure of the
system.
Do we really need UML?

Mais conteúdo relacionado

Semelhante a Uml.pptx

Semelhante a Uml.pptx (20)

INTRODUCTION TO UML DIAGRAMS
INTRODUCTION TO UML DIAGRAMSINTRODUCTION TO UML DIAGRAMS
INTRODUCTION TO UML DIAGRAMS
 
Case stydy cs701
Case stydy cs701 Case stydy cs701
Case stydy cs701
 
Uml Presentation
Uml PresentationUml Presentation
Uml Presentation
 
Uml structural diagrams
Uml structural diagramsUml structural diagrams
Uml structural diagrams
 
Experiment no
Experiment noExperiment no
Experiment no
 
Unified Modeling Language
Unified Modeling LanguageUnified Modeling Language
Unified Modeling Language
 
UML
UMLUML
UML
 
Learn sqa process
Learn sqa processLearn sqa process
Learn sqa process
 
UML-Basics-to-AI-Powered-UML-Course.pdf
UML-Basics-to-AI-Powered-UML-Course.pdfUML-Basics-to-AI-Powered-UML-Course.pdf
UML-Basics-to-AI-Powered-UML-Course.pdf
 
Uml
UmlUml
Uml
 
Understanding unified modelling language
Understanding unified modelling languageUnderstanding unified modelling language
Understanding unified modelling language
 
R1x g02 enterprise architecture i
R1x g02 enterprise architecture iR1x g02 enterprise architecture i
R1x g02 enterprise architecture i
 
UML (Unified Modeling Language)
UML (Unified Modeling Language)UML (Unified Modeling Language)
UML (Unified Modeling Language)
 
Ch 2.1
Ch 2.1Ch 2.1
Ch 2.1
 
Uml(unified modeling language) Homework Help
Uml(unified modeling language) Homework HelpUml(unified modeling language) Homework Help
Uml(unified modeling language) Homework Help
 
Uml
UmlUml
Uml
 
Uml introduciton
Uml introducitonUml introduciton
Uml introduciton
 
ooAD
ooADooAD
ooAD
 
Uml
UmlUml
Uml
 
UML
UMLUML
UML
 

Último

Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789CristineGraceAcuyan
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfamanda2495
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxbalqisyamutia
 
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime PondicherryPondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherrymeghakumariji156
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...RitikaRoy32
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...nirzagarg
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...nirzagarg
 
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证eeanqy
 
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best ServiceIndependent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxNikhil Raut
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证wpkuukw
 
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...sriharipichandi
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样yhavx
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipNitya salvi
 
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...HyderabadDolls
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationZenSeloveres
 
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...gajnagarg
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxtrose8
 

Último (20)

Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best ServiceHigh Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
High Profile Escorts Nerul WhatsApp +91-9930687706, Best Service
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
 
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime PondicherryPondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
Pondicherry Escorts Service Girl ^ 9332606886, WhatsApp Anytime Pondicherry
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
 
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证
怎样办理伯明翰城市大学毕业证(BCU毕业证书)成绩单留信认证
 
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best ServiceIndependent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptx
 
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
一比一定(购)滑铁卢大学毕业证(UW毕业证)成绩单学位证
 
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
Anupama Kundoo Cost Effective detailed ppt with plans and elevations with det...
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
 
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
Madhyamgram \ (Genuine) Escort Service Kolkata | Service-oriented sexy call g...
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
Top profile Call Girls In eluru [ 7014168258 ] Call Me For Genuine Models We ...
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptx
 

Uml.pptx

  • 2. What is UML? ● Unified Modeling Language (UML) is a general purpose modelling language. The main aim of UML is to define a standard way to visualize the way a system has been designed. It is quite similar to blueprints used in other fields of engineering. ● UML is not a programming language, it is rather a visual language. We use UML diagrams to portray the behavior and structure of a system.
  • 3. ● November 1997(1.1)UML was adopted by Object Management Group. This was the first version of UML. ● March 2000(1.3)A minor upgrade was done to the existing model with notable changes in semantics, notations, and meta-models of UML. ● September 2001(1.4)This was the period of the major update to the UML. It scaled UML by providing various extensions. Visibility, artifact, stereotypes were introduced in diagrams. ● March 2003(1.5)Features such as procedures, data flow mechanism were added to the UML. History of UML
  • 4. ● January 2005(1.4.2)UML was accepted as a standard by ISO. ● August 2005(2.0)New diagrams such as the object, package, timing, interaction were added to the UML. New features were added to the activity and sequence diagrams. Collaboration diagram was renamed as communication diagram. Multiple features and changes were introduced in the existing diagrams. ● April 2006(2.1)Corrections were made to the UML 2.0. ● February 2007(2.1.1)Upgrades were introduced in the UML 2.1. History of UML
  • 5. ● November 2007(2.1.2)UML 2.1.1 was redefined. ● February 2009(2.2)UML 2.1.2 bugs were fixed. ● May 2010(2.3)UML 2.2 was revised, and minor changes were made to the component diagrams. ● August 2011(2.4.1)Classes, packages, and stereotypes changes were made. UML 2.3 was revised with enhancement features. ● June 2015(2.5)UML 2.4.1 was revised with minor changes. UML was made simple than it was before. Rapid functioning and the generation of more effective models were introduced. Outdated features were eliminated. Models, templates were eliminated as auxiliary constructs. History of UML
  • 6. Class – A class defines the blue print i.e. structure and functions of an object. Objects – Objects help us to decompose large systems and help us to modularize our system. Modularity helps to divide our system into understandable components so that we can build our system piece by piece. An object is the fundamental unit (building block) of a system which is used to depict an entity. Inheritance – Inheritance is a mechanism by which child classes inherit the properties of their parent classes. Object Oriented Concepts Used in UML
  • 7. Abstraction – Mechanism by which implementation details are hidden from user. Encapsulation – Binding data together and protecting it from the outer world is referred to as encapsulation. Polymorphism – Mechanism by which functions or entities are able to exist in different forms. Object Oriented Concepts Used in UML
  • 8. 1. Structural Diagrams – Capture static aspects or structure of a system. Structural Diagrams include: Component Diagrams, Object Diagrams, Class Diagrams and Deployment Diagrams. 1. Behavior Diagrams – Capture dynamic aspects or behavior of the system. Behavior diagrams include: Use Case Diagrams, State Diagrams, Activity Diagrams and Interaction Diagrams. Diagrams in UML can be broadly classified as:
  • 9. Class Diagram – UML class diagrams: Class diagrams are the main building blocks of every object-oriented method. The class diagram can be used to show the classes, relationships, interface, association, and collaboration. UML is standardized in class diagrams. Since classes are the building block of an application that is based on OOPs, so as the class diagram has an appropriate structure to represent the classes, inheritance, relationships, and everything that OOPs have in their context. It describes various kinds of objects and the static relationship between them. The main purpose to use class diagrams are: This is the only UML that can appropriately depict various aspects of the OOPs concept. Structural UML Diagrams
  • 10. The main purpose to use class diagrams are: ● This is the only UML that can appropriately depict various aspects of the OOPs concept. ● Proper design and analysis of applications can be faster and efficient. ● It is the base for deployment and component diagram. ● There are several software available that can be used online and offline to draw these diagrams Like Edraw max, lucid chart, etc. Structural UML Diagrams
  • 11. Each class is represented by a rectangle having a subdivision of three compartments name, attributes, and operation. There are three types of modifiers that are used to decide the visibility of attributes and operations. ● + is used for public visibility(for everyone) ● # is used for protected visibility (for friend and derived) ● – is used for private visibility (for only me) Structural UML Diagrams
  • 12. Example of Animal class (parent) having two child class as dog and cat Structural UML Diagrams
  • 13. Composite Structure Diagram – We use composite structure diagrams to represent the internal structure of a class and its interaction points with other parts of the system. A composite structure diagram represents relationship between parts and their configuration which determine how the classifier (class, a component, or a deployment node) behaves. They represent internal structure of a structured classifier making the use of parts, ports, and connectors. We can also model collaborations using composite structure diagrams. They are similar to class diagrams except they represent individual parts in detail as compared to the entire class. Structural UML Diagrams
  • 14. Object Diagram – An Object Diagram can be referred to as a screenshot of the instances in a system and the relationship that exists between them. Since object diagrams depict behaviour when objects have been instantiated, we are able to study the behavior of the system at a particular instant. Object diagrams are vital to portray and understand functional requirements of a system. In other words, “An object diagram in the Unified Modeling Language (UML), is a diagram that shows a complete or partial view of the structure of a modeled system at a specific time.” Structural UML Diagrams
  • 15. Difference between an Object and a Class Diagram – An object diagram is similar to a class diagram except it shows the instances of classes in the system. We depict actual classifiers and their relationships making the use of class diagrams. On the other hand, an Object Diagram represents specific instances of classes and relationships between them at a point of time. What is a classifier? In UML a classifier refers to a group of elements that have some common features like methods, attributes and operations. A classifier can be thought of as an abstract metaclass which draws a boundary for a group of instances having common static and dynamic features. Structural UML Diagrams
  • 16. For example, we refer a class, an object, a component, or a deployment node as classifiers in UML since they define a common set of properties. An Object Diagram is a structural diagram which uses notation similar to that of class diagrams. We are able to design object diagrams by instantiating classifiers. Object Diagrams use real world examples to depict the nature and structure of the system at a particular point in time. Since we are able to use data available within objects, Object diagrams provide a clearer view of the relationships that exist between objects. Structural UML Diagrams
  • 17. Composite Structure Diagram – We use composite structure diagrams to represent the internal structure of a class and its interaction points with other parts of the system. A composite structure diagram represents relationship between parts and their configuration which determine how the classifier (class, a component, or a deployment node) behaves. They represent internal structure of a structured classifier making the use of parts, ports, and connectors. We can also model collaborations using composite structure diagrams. They are similar to class diagrams except they represent individual parts in detail as compared to the entire class. Structural UML Diagrams
  • 19. Component Diagram – Component diagrams are used to represent the how the physical components in a system have been organized. We use them for modelling implementation details. Component Diagrams depict the structural relationship between software system elements and help us in understanding if functional requirements have been covered by planned development. Component Diagrams become essential to use when we design and build complex systems. Interfaces are used by components of the system to communicate with each other. Structural UML Diagrams
  • 20. Deployment Diagram – Deployment Diagrams are used to represent system hardware and its software.It tells us what hardware components exist and what software components run on them.We illustrate system architecture as distribution of software artifacts over distributed targets. An artifact is the information that is generated by system software. They are primarily used when a software is being used, distributed or deployed over multiple machines with different configurations. Structural UML Diagrams
  • 21. State Machine Diagrams – A state diagram is used to represent the condition of the system or part of the system at finite instances of time. It’s a behavioral diagram and it represents the behavior using finite state transitions. State diagrams are also referred to as State machines and State-chart Diagrams. These terms are often used interchangeably. So simply, a state diagram is used to model the dynamic behavior of a class in response to time and changing external stimuli. We can say that each and every class has a state but we don’t model every class using State diagrams. We prefer to model the states with three or more states. Behavior UML Diagrams
  • 22. Uses of statechart diagram – We use it to state the events responsible for change in state (we do not show what processes cause those events). We use it to model the dynamic behavior of the system . To understand the reaction of objects/classes to internal or external stimuli. Firstly let us understand what are Behavior diagrams? There are two types of diagrams in UML : Structure Diagrams – Used to model the static structure of a system, for example- class diagram, package diagram, object diagram, deployment diagram etc. Behavior UML Diagrams
  • 23. Behavior diagram – Used to model the dynamic change in the system over time. They are used to model and construct the functionality of a system. So, a behavior diagram simply guides us through the functionality of the system using Use case diagrams, Interaction diagrams, Activity diagrams and State diagrams. Difference between state diagram and flowchart – The basic purpose of a state diagram is to portray various changes in state of the class and not the processes or commands causing the changes. However, a flowchart on the other hand portrays the processes or commands that on execution change the state of class or an object of the class. Behavior UML Diagrams
  • 24. Activity Diagrams – We use Activity Diagrams to illustrate the flow of control in a system. We can also use an activity diagram to refer to the steps involved in the execution of a use case. We model sequential and concurrent activities using activity diagrams. So, we basically depict workflows visually using an activity diagram.An activity diagram focuses on condition of flow and the sequence in which it happens. We describe or depict what causes a particular event using an activity diagram Behavior UML Diagrams
  • 25. Use Case Diagrams – Use Case Diagrams are used to depict the functionality of a system or a part of a system. They are widely used to illustrate the functional requirements of the system and its interaction with external agents(actors). A use case is basically a diagram representing different scenarios where the system can be used. A use case diagram gives us a high level view of what the system or a part of the system does without going into implementation details. Behavior UML Diagrams
  • 26. Sequence Diagram – A sequence diagram simply depicts interaction between objects in a sequential order i.e. the order in which these interactions take place.We can also use the terms event diagrams or event scenarios to refer to a sequence diagram. Sequence diagrams describe how and in what order the objects in a system function. These diagrams are widely used by businessmen and software developers to document and understand requirements for new and existing systems. Behavior UML Diagrams
  • 27. Communication Diagram – A Communication Diagram(known as Collaboration Diagram in UML 1.x) is used to show sequenced messages exchanged between objects. A communication diagram focuses primarily on objects and their relationships. We can represent similar information using Sequence diagrams,however, communication diagrams represent objects and links in a free form. Behavior UML Diagrams
  • 28. Timing Diagram – Timing Diagram are a special form of Sequence diagrams which are used to depict the behavior of objects over a time frame. We use them to show time and duration constraints which govern changes in states and behavior of objects. Interaction Overview Diagram – An Interaction Overview Diagram models a sequence of actions and helps us simplify complex interactions into simpler occurrences. It is a mixture of activity and sequence diagrams. Behavior UML Diagrams
  • 29. Composite Structure Diagram – We use composite structure diagrams to represent the internal structure of a class and its interaction points with other parts of the system. A composite structure diagram represents relationship between parts and their configuration which determine how the classifier (class, a component, or a deployment node) behaves. They represent internal structure of a structured classifier making the use of parts, ports, and connectors. We can also model collaborations using composite structure diagrams. They are similar to class diagrams except they represent individual parts in detail as compared to the entire class. Behavior UML Diagrams
  • 30. ● Complex applications need collaboration and planning from multiple teams and hence require a clear and concise way to communicate amongst them. ● Businessmen do not understand code. So UML becomes essential to communicate with non programmers essential requirements, functionalities and processes of the system. ● A lot of time is saved down the line when teams are able to visualize processes, user interactions and static structure of the system. Do we really need UML?