Lecture Notes 1.3.6
Lecture Notes 1.3.6
4 Interaction Diagram
The purpose of interaction diagrams is to visualize the interactive
behavior of the system. Visualizing the interaction is a difficult task.
Hence, the solution is to use different types of models to capture the
different aspects of the interaction.
Sequence and collaboration diagrams are used to capture the dynamic
nature but from a different angle.
The purpose of interaction diagram is −
To capture the dynamic behaviour of a system.
To describe the message flow in the system.
To describe the structural organization of the objects.
To describe the interaction among objects.
How to Draw an Interaction Diagram?
As we have already discussed, the purpose of interaction diagrams is to
capture the dynamic aspect of a system. So to capture the dynamic
aspect, we need to understand what a dynamic aspect is and how it is
visualized. Dynamic aspect can be defined as the snapshot of the
running system at a particular moment
We have two types of interaction diagrams in UML. One is the
sequence diagram and the other is the collaboration diagram. The
sequence diagram captures the time sequence of the message flow from
one object to another and the collaboration diagram describes the
organization of objects in a system taking part in the message flow.
Following things are to be identified clearly before drawing the
interaction diagram
Objects taking part in the interaction.
Message flows among the objects.
The sequence in which the messages are flowing.
Object organization.
Following are two interaction diagrams modeling the order
management system. The first diagram is a sequence diagram and the
second is a collaboration diagram
5 Activity Diagram
The basic purposes of activity diagrams are similar to other four
diagrams. It captures the dynamic behavior of the system. Other four
diagrams are used to show the message flow from one object to another
but activity diagram is used to show message flow from one activity to
another.
Activity is a particular operation of the system. Activity diagrams are
not only used for visualizing the dynamic nature of a system, but they
are also used to construct the executable system by using forward and
reverse engineering techniques. The only missing thing in the activity
diagram is the message part.
It does not show any message flow from one activity to another.
Activity diagram is sometimes considered as the flowchart. Although
the diagrams look like a flowchart, they are not. It shows different flows
such as parallel, branched, concurrent, and single.
The purpose of an activity diagram can be described as −
Draw the activity flow of a system.
Describe the sequence from one activity to another.
Describe the parallel, branched and concurrent flow of the system.
How to Draw an Activity Diagram?
Activity diagrams are mainly used as a flowchart that consists of
activities performed by the system. Activity diagrams are not exactly
flowcharts as they have some additional capabilities. These additional
capabilities include branching, parallel flow, swimlane, etc.
Before drawing an activity diagram, we must have a clear
understanding about the elements used in activity diagram. The main
element of an activity diagram is the activity itself. An activity is a
function performed by the system. After identifying the activities, we
need to understand how they are associated with constraints and
conditions.
Before drawing an activity diagram, we should identify the following
elements −
Activities
Association
Conditions
Constraints
Once the above-mentioned parameters are identified, we need to make a
mental layout of the entire flow. This mental layout is then transformed
into an activity diagram.
Following is an example of an activity diagram for order management
system. In the diagram, four activities are identified which are
associated with conditions. One important point should be clearly
understood that an activity diagram cannot be exactly matched with the
code. The activity diagram is made to understand the flow of activities
and is mainly used by the business users
Following diagram is drawn with the four main activities −
Send order by the customer
Receipt of the order
Confirm the order
Dispatch the order
After receiving the order request, condition checks are performed to
check if it is normal or special order. After the type of order is
identified, dispatch activity is performed and that is marked as the
termination of the process.
Where to Use Activity Diagrams?
The basic usage of activity diagram is similar to other four UML
diagrams. The specific usage is to model the control flow from one
activity to another. This control flow does not include messages.
Activity diagram is suitable for modeling the activity flow of the
system. An application can have multiple systems. Activity diagram
also captures these systems and describes the flow from one system to
another. This specific usage is not available in other diagrams. These
systems can be database, external queues, or any other system.
We will now look into the practical applications of the activity diagram.
From the above discussion, it is clear that an activity diagram is drawn
from a very high level. So it gives high level view of a system. This
high level view is mainly for business users or any other person who is
not a technical person.
This diagram is used to model the activities which are nothing but
business requirements. The diagram has more impact on business
understanding rather than on implementation details.
Activity diagram can be used for −
Modeling work flow by using activities.
Modeling business requirements.
High level understanding of the system's functionalities.
Investigating business requirements at a later stage.
6 State chart Diagram
Statechart diagram is one of the five UML diagrams used to model the
dynamic nature of a system. They define different states of an object
during its lifetime and these states are changed by events. Statechart
diagrams are useful to model the reactive systems. Reactive systems
can be defined as a system that responds to external or internal events.
Statechart diagram describes the flow of control from one state to
another state. States are defined as a condition in which an object exists
and it changes when some event is triggered. The most important
purpose of Statechart diagram is to model lifetime of an object from
creation to termination.
Statechart diagrams are also used for forward and reverse engineering
of a system. However, the main purpose is to model the reactive
system.
Following are the main purposes of using Statechart diagrams −
To model the dynamic aspect of a system.
To model the life time of a reactive system.
To describe different states of an object during its life time.
Define a state machine to model the states of an object.
How to Draw a Statechart Diagram?
Statechart diagram is used to describe the states of different objects in
its life cycle. Emphasis is placed on the state changes upon some
internal or external events. These states of objects are important to
analyze and implement them accurately.
Statechart diagrams are very important for describing the states. States
can be identified as the condition of objects when a particular event
occurs.
Before drawing a Statechart diagram we should clarify the following
points −
Identify the important objects to be analyzed.
Identify the states.
Identify the events.
Following is an example of a Statechart diagram where the state of
Order object is analyzed
The first state is an idle state from where the process starts. The next
states are arrived for events like send request, confirm request, and
dispatch order. These events are responsible for the state changes of
order object.
During the life cycle of an object (here order object) it goes through the
following states and there may be some abnormal exits. This abnormal
exit may occur due to some problem in the system. When the entire life
cycle is complete, it is considered as a complete transaction as shown in
the following figure. The initial and final state of an object is also
shown in the following figure.
Where to Use Statechart Diagrams?
From the above discussion, we can define the practical applications of a
Statechart diagram. Statechart diagrams are used to model the dynamic
aspect of a system like other four diagrams discussed in this tutorial.
However, it has some distinguishing characteristics for modeling the
dynamic nature.
Statechart diagram defines the states of a component and these state
changes are dynamic in nature. Its specific purpose is to define the state
changes triggered by events. Events are internal or external factors
influencing the system.
Statechart diagrams are used to model the states and also the events
operating on the system. When implementing a system, it is very
important to clarify different states of an object during its life time and
Statechart diagrams are used for this purpose. When these states and
events are identified, they are used to model it and these models are
used during the implementation of the system.
If we look into the practical implementation of Statechart diagram, then
it is mainly used to analyze the object states influenced by events. This
analysis is helpful to understand the system behavior during its
execution.
The main usage can be described as −
To model the object states of a system.
To model the reactive system. Reactive system consists of reactive
objects.
To identify the events responsible for state changes.
Forward and reverse engineering.