An Object-Oriented Design Process
An Object-Oriented Design Process
z Structured design processes involve z Highlights key activities without being tied to
developing a number of different system any proprietary process such as the RUP.
models. • Define the context and modes of use of the
z They require a lot of effort for development system;
and maintenance of these models and, for • Design the system architecture;
small systems, this may not be cost- • Identify the principal system objects;
effective.
• Develop design models;
z However, for large systems developed by • Specify object interfaces.
different groups design models are an
essential communication mechanism.
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 1 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 2
A weather mapping system is required to generate weather maps on a z Develop an understanding of the relationships
regular basis using data collected from remote, unattended weather stations between the software being designed and its
and other data sources such as weather observers, balloons and satellites. external environment
Weather stations transmit their data to the area computer in response to a
request from that machine. z System context
• A static model that describes other systems in the
The area computer system validates the collected data and integrates it with environment. Use a subsystem model to show other
the data from different sources. The integrated data is archived and, using systems. Following slide shows the systems around the
data from this archive and a digitised map database a set of local weather weather station system.
maps is created. Maps may be printed for distribution on a special-purpose
z Model of system use
map printer or may be displayed in a number of different formats.
• A dynamic model that describes how the system interacts
with its environment. Use use-cases to show interactions
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 3 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 4
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 5 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 6
Use-case models Use-cases for the weather station
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 7 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 8
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 9 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 10
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 11 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 12
Approaches to identification Weather station object classes
z Use a grammatical approach based on a natural z Ground thermometer, Anemometer, Barometer
language description of the system (used in Hood • Application domain objects that are ‘hardware’ objects
OOD method). related to the instruments in the system.
z Base the identification on tangible things in the z Weather station
application domain. • The basic interface of the weather station to its
environment. It therefore reflects the interactions
z Use a behavioural approach and identify objects identified in the use-case model.
based on what participates in what behaviour.
z Weather data
z Use a scenario-based analysis. The objects, • Encapsulates the summarised data from the instruments.
attributes and methods in each scenario are
identified.
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 13 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 14
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 15 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 16
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 17 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 18
Subsystem models Weather station subsystems
z Shows how the design is organised into
logically related groups of objects.
z In the UML, these are shown using
packages - an encapsulation construct. This
is a logical model. The actual organisation of
objects in the system may be different.
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 19 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 20
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 21 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 22
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 23 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 24
Object interface specification Weather station interface
z Object interfaces have to be specified so that the interface WeatherStation {
z The UML uses class diagrams for interface public void calibrate ( Instrument i) ;
specification but Java may also be used. public int getID () ;
} //WeatherStation
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 25 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 26
©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 27 ©Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 14 Slide 28
Pollution monitoring