SlideShare a Scribd company logo
Chapter 4

Systems Analysis and Design in a Changing World, 6t
1
Domain Classes
Chapter 4
Systems Analysis and Design
in a Changing World 6th Ed
Satzinger, Jackson & Burd
Chapter 4 Outline
 “Things”

in the Problem Domain

Data entities
 Domain classes


 The

Domain Model Class Diagram
 The Entity-Relationship Diagram

Systems Analysis and Design in a Changing World, 6t
3
Learning Objectives
Explain how the concept of “things” in the
problem domain also define requirements
 Identify and analyze data entities and domain
classes needed in the system
 Read, interpret, and create an entity-relationship
diagram
 Read, interpret, and create a domain model
class diagram
 Understand the domain model class diagram for
the RMO Consolidated Sales and Marketing
System


Systems Analysis and Design in a Changing World, 6t
4
Overview
Chapter 3 provided an overview of identifying
use cases to define functional requirements
 This chapter focuses on another key concepts
for defining requirements— data entities or
domain classes
 In the RMO Tradeshow System from Chapter 1,
some domain classes are Supplier, Product, and
Contact
 In this chapter’s opening case Waiters on Call,
examples of domain classes are Restaurants,
Menu items, Customers, Orders, Drivers,
Addresses, Routes, and Payments


Systems Analysis and Design in a Changing World, 6t
5
Things in the Problem Domain
Problem domain—the specific area (or domain)
of the users’ business need that is within the
scope of the new system.
 “Things” are those items users work with when
accomplishing tasks that need to be
remembered
 Examples of “Things” are products, sales,
shippers, customers, invoices, payments, etc.
 These “Things” are modeled as domain classes
or data entities
 In this course, we will call them domain classes.
In database class you call them data entities


Systems Analysis and Design in a Changing World, 6t
6
Things in the Problem Domain
Two Techniques for Identifying them
 Brainstorming


Use a checklist of all of the usual types of things
typically found and brainstorm to identify domain
classes of each type

 Noun


Technique

Technique

Identify all of the nouns that come up when the
system is described and determine if each is a
domain class, an attribute, or not something we
need to remember

Systems Analysis and Design in a Changing World, 6t
7
Brainstorming Technique


Are there any tangible things? Are there any
organizational units? Sites/locations? Are there
incidents or events that need to be recorded?

Systems Analysis and Design in a Changing World, 6t
8
Brainstorming Technique:
Steps
1.
2.

3.

4.
5.

Identify a user and a set of use cases
Brainstorm with the user to identify things involved
when carrying out the use case—that is, things about
which information should be captured by the system.
Use the types of things (categories) to systematically
ask questions about potential things, such as the
following: Are there any tangible things you store
information about? Are there any locations involved?
Are there roles played by people that you need to
remember?
Continue to work with all types of users and
stakeholders to expand the brainstorming list
Merge the results, eliminate any duplicates, and
compile an initial list

Systems Analysis and Design in a Changing World, 6t
9
The Noun Technique
A technique to identify problem domain classes
(things) by finding, classifying, and refining a
list of nouns that come up in in discussions or
documents
 Popular technique. Systematic.
 Does end up with long lists and many nouns
that are not things that need to be stored by
the system
 Difficulty identifying synonyms and things that
are really attributes
 Good place to start when there are no users
available to help brainstorm


Systems Analysis and Design in a Changing World, 6t
10
Partial List
of Nouns
for RMO
With notes on
whether to
include as
domain class

Systems Analysis and Design in a Changing World, 6t
11
The Noun Technique:
Steps
1.

Using the use cases, actors, and other information
about the system— including inputs and outputs—
identify all nouns.


2.

For the RMO CSMS, the nouns might include customer, product item,
sale, confirmation, transaction, shipping, bank, change request,
summary report, management, transaction report, accounting, back
order, back order notification, return, return confirmation…

Using other information from existing systems, current
procedures, and current reports or forms, add items or
categories of information needed.


For the RMO CSMS, these might include price, size, color, style,
season, inventory quantity, payment method, and shipping address.

Systems Analysis and Design in a Changing World, 6t
12
The Noun Technique:
Steps (continued)
3.

As this list of nouns builds, refine it. Ask these
questions about each noun to help you decide whether
you should include it:




Is it a unique thing the system needs to know about?
Is it inside the scope of the system I am working on?
Does the system need to remember more than one of these items?

Ask these questions to decide to exclude it:




Is it really a synonym for some other thing I have identified?
Is it really just an output of the system produced from other information
I have identified?
Is it really just an input that results in recording some other information
I have identified?

Ask these questions to research it:



Is it likely to be a specific piece of information (attribute) about some
other thing I have identified?
Is it something I might need if assumptions change?

Systems Analysis and Design in a Changing World, 6t
13
The Noun Technique:
Steps (continued)
4.

Create a master list of all nouns identified and then
note whether each one should be included, excluded,
or researched further.

5.

Review the list with users, stakeholders, and team
members and then define the list of things in the
problem domain.

Systems Analysis and Design in a Changing World, 6t
14
Details about Domain Classes


Attribute— describes one piece of information
about each instance of the class




Identifier or key




Customer has first name, last name, phone number
One attribute uniquely identifies an instance of the
class. Required for data entities, optional for domain
classes. Customer ID identifies a customer

Compound attribute


Two or more attributes combined into one structure
to simplify the model. (E.g., address rather than
including number, street, city, state, zip separately).
Sometimes an identifier or key is a compound
attribute.

Systems Analysis and Design in a Changing World, 6t
15
Attributes and Values


Class is a type of thing. Object is a specific instance of the class.
Each instance has its own values for an attribute

Systems Analysis and Design in a Changing World, 6t
16
Associations Among Things


Association— a naturally occurring relationship
between classes (UML term)

Systems Analysis and Design in a Changing World, 6t
17
Just to Clarify…


Called association on class diagram in UML






Called relationship on ERD in database class




Multiplicity is term for the number of associations between
classes: 1 to 1 or 1 to many
We are emphasizing UML in this text
Cardinality is term for number of relationships in entity
relationship diagrams: 1 to 1 or 1 to many

Associations and Relationships apply in two directions




Read them separately each way
A customer places an order
An order is placed by a customer

Systems Analysis and Design in a Changing World, 6t
18
Minimum and Maximum Multiplicity


Associations have minimum and maximum constraints



minimum is zero, the association is optional
If minimum is at least one, the association is mandatory

Systems Analysis and Design in a Changing World, 6t
19
Types of Associations


Binary Association




Unary Association (recursive)





Associations between exactly two different classes
 Course Section includes Students
 Members join Club
Associations between two instances of the same class
 Person married to person
 Part is made using parts

Ternary Association (three)
N-ary Association (between n)

Systems Analysis and Design in a Changing World, 6t
20
Semantic Net
Shows instances and
how they are linked
Example shows
instances of three
classes
Quick quiz:
How many associations are
there?
What are the minimum and
maximum multiplicities in
each direction?
What type of associations are
they?

Systems Analysis and Design in a Changing World, 6t
21
The Domain Model Class Diagram


Class




Domain Class




Classes that describe objects in the problem domain

Class Diagram




A category of classification used to describe a collection of
objects

A UML diagram that shows classes with attributes and
associations (plus methods if it models software classes)

Domain Model Class Diagram


A class diagram that only includes classes from the problem
domain, not software classes so no methods

Systems Analysis and Design in a Changing World, 6t
22
Domain Class Notation




Domain class has no methods
Class name is always capitalized
Attribute names are not capitalized and use camelback
notation (words run together and second word is
capitalized)

Systems Analysis and Design in a Changing World, 6t
23
A Simple Domain Model Class
Diagram



Note: This diagram matches the semantic net shown previously





A customer places zero or more orders
An order is placed by exactly one customer
An order consists of one or more order items
An order item is part of exactly one order

Systems Analysis and Design in a Changing World, 6t
24
UML Notation for Multiplicity

Systems Analysis and Design in a Changing World, 6t
25
Domain Model Class Diagram
for a bank with many branches

Systems Analysis and Design in a Changing World, 6t
26
Domain Model Class Diagram
for course enrollment at a university



Where is each student’s grade remembered in this model?



Each section has many grades and each grade is association with a student
Each student has many grades and each grade is association with a section

Systems Analysis and Design in a Changing World, 6t
27
Refined Course Enrollment Model
with an Association Class CourseEnrollment


Association class— an association that is treated as a class in a
many to many association because it has attributes that need to be
remembered, such as grade

Systems Analysis and Design in a Changing World, 6t
28
More Complex Issues about Classes:
Generalization/Specialization Relationships


Generalization/Specialization




Superclass




the superior or more general class in a
generalization/specialization hierarchy

Subclass




A hierarchical relationship where subordinate classes are special
types of the superior classes. Often called an Inheritance
Hierarchy

the subordinate or more specialized class in a
generalization/specialization hierarchy

Inheritance


the concept that subclasses classes inherit characteristics of the
more general superclass

Systems Analysis and Design in a Changing World, 6t
29
Generalization/Specialization
Inheritance

Systems Analysis and Design in a Changing World, 6t
30
Generalization/Specialization
Inheritance for RMO Three Types of Sales





Abstract class— a class that allow subclasses to inherit characteristics
but never gets instantiated. In Italics (Sale above)
Concrete class— a class that can have instances

Systems Analysis and Design in a Changing World, 6t
31
Generalization/Specialization
Inheritance for the Bank with Special Types of Accounts







A SavingsAccount
has 4 attributes
A CheckingAccount
Has 5 attributes
Note: the subclasses
inherit the
associations, too

Systems Analysis and Design in a Changing World, 6t
32
More Complex Issues about Classes:
Whole Part Relationships




Whole-part relationship— a relationship between
classes where one class is part of or a component
portion of another class
Aggregation— a whole part relationship where the
component part exists separately and can be removed
and replaced (UML diamond symbol, next slide)





Computer has disk storage devices
Car has wheels

Composition— a whole part relationship where the parts
can no longer be removed (filled in diamond symbol)



Hand has fingers
Chip has circuits

Systems Analysis and Design in a Changing World, 6t
33
Whole Part Relationships
Computer and its Parts




Note: this is composition,
with diamond symbol.
Whole part can have
multiplicity symbols, too
(not shown)

Systems Analysis and Design in a Changing World, 6t
34
More on UML Relationships


There are actually three types of relationships in
class diagrams








Association Relationships
 These are associations discussed previously, just like
ERD relationships
Whole Part Relationships
 One class is a component or part of another class
Generalizations/Specialization Relationships
 Inheritance

So, try not to confuse relationship with association

Systems Analysis and Design in a Changing World, 6t
35
RMO CSMS Project
Domain Model Class Diagrams









There are several ways to create the domain
model class diagram for a project
RMO CSMS has 27 domain classes overall
Can create one domain model class diagram per
subsystem for those working on a subsystem
Can create one overall domain model class
diagram to provide an overview of the whole
system
Usually in early iterations, an initial draft of the
domain model class diagram is completed to guide
development and kept up to date

Systems Analysis and Design in a Changing World, 6t
36
RMO CSMS Project
Domain Model Class Diagrams









There are several ways to create the domain
model class diagram for a project
RMO CSMS has 27 domain classes overall
Can create one domain model class diagram per
subsystem for those working on a subsystem
Can create one overall domain model class
diagram to provide an overview of the whole
system
Usually in early iterations, an initial draft of the
domain model class diagram is completed to guide
development and kept up to date

Systems Analysis and Design in a Changing World, 6t
37
RMO CSMS
Project
Sales Subsystem
Domain Model
Class Diagrams

Systems Analysis and Design in a Changing World, 6t
38
RMO CSMS
Project
Customer Account
Subsystem Domain
Model Class
Diagram

Systems Analysis and Design in a Changing World, 6t
39
RMO CSMS
Project
Complete Domain
Model Class
Diagram

Systems Analysis and Design in a Changing World, 6t
40
RMO CSMS Project
Domain Model Class Diagrams


Given the complete RMO CSMS Domain Model Class
Diagram and Sales and Customer Account subsystem
examples:








Try completing the Order Fulfilment Subsystem Domain Model
Class Diagram
Try Completing the Marketing Subsystem Domain Model Class
Diagram
Try Completing the Reporting Subsystem Domain Model Class
Diagram

Review the use cases from Chapter 3 and decide what
classes and associations from the complete model are
required for each subsystem


Classes and associations might be duplicated in more than one
subsystem model

Systems Analysis and Design in a Changing World, 6t
41
Entity-Relationship Diagrams
ERD








An ERD shows basically the same information as
a domain model class diagram
It is not a UML diagram, but it is widely used by
data analysts in database management
There really is no standard notation, but most
developers use the entity and crows feet notation
shown in this text
An ERD is not good for showing
generalization/specialization relationships and
whole part relationships

Systems Analysis and Design in a Changing World, 6t
42
Example of ERD Notation


A simple ERD without showing attributes

Systems Analysis and Design in a Changing World, 6t
43
ERD Cardinality Symbols
often called the crows feet notation

Systems Analysis and Design in a Changing World, 6t
44
Expanded ERD with Attributes




Note: This diagram matches the semantic net shown previously
Also matches a domain model class diagram shown previously

Systems Analysis and Design in a Changing World, 6t
45
An ERD for a Bank

Systems Analysis and Design in a Changing World, 6t
46
Summary









This chapter is the second of three that focuses on
modeling functional requirements as a part of systems
analysis
“Things” in the problem domain are identified and
modeled, called domain classes or data entities
Two techniques for identifying domain classes/data
entities are the brainstorming technique and the noun
technique
Domain classes have attributes and associations
Associations are naturally occurring relationships
among classes, and associations have minimum and
maximum multiplicity

Systems Analysis and Design in a Changing World, 6t
47
Summary






The UML class diagram notation is used to create a
domain model class diagram for a system. The domain
model classes do not have methods because they are
not yet software classes.
There are actually three UML class diagram
relationships: association relationships,
generalization/specialization (inheritance) relationships,
and whole part relationships
Other class diagram concepts are abstract versus
concrete classes, compound attributes, composition
and aggregation, association classes, super classes
and subclasses

Systems Analysis and Design in a Changing World, 6t
48
Summary






Entity-relationship diagrams (ERDs) show the same
information as a domain model class diagram
ERDs are preferred by database analysts and are
widely used
ERDs are not UML diagrams, and an association is
called a relationship, multiplicity is called cardinality,
and generalization/specialization (inheritance) and
whole part relationships are usually not shown

Systems Analysis and Design in a Changing World, 6t
49

More Related Content

What's hot

Chapter 2
Chapter 2Chapter 2
Chapter 2
LamineKaba6
 
System Analysis and Design
System Analysis and Design System Analysis and Design
System Analysis and Design Matthew McKenzie
 
System Analysis and design Class 1
System Analysis and design Class 1System Analysis and design Class 1
System Analysis and design Class 1
Dr. Mazin Mohamed alkathiri
 
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by KeylabsSAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
keylabstraining
 
Requirement analysis and specification, software engineering
Requirement analysis and specification, software engineeringRequirement analysis and specification, software engineering
Requirement analysis and specification, software engineering
Rupesh Vaishnav
 
Ch04 agile development models
Ch04 agile development modelsCh04 agile development models
Ch04 agile development models
Noor Ul Hudda Memon
 
System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14
Matthew McKenzie
 
5 investigating system requirements
5 investigating system requirements5 investigating system requirements
5 investigating system requirementsricardovigan
 
System Design and Analysis 1
System Design and Analysis 1System Design and Analysis 1
System Design and Analysis 1Boeun Tim
 
Structured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and DesignStructured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and Design
Motaz Saad
 
Requirements analysis and modeling
Requirements analysis and modelingRequirements analysis and modeling
Requirements analysis and modeling
Syed Zaid Irshad
 
Data Staging Strategy
Data Staging StrategyData Staging Strategy
Data Staging Strategy
Milind Zodge
 
SRS(software requirement specification)
SRS(software requirement specification)SRS(software requirement specification)
SRS(software requirement specification)
Akash Kumar Dhameja
 
Process modelling
Process modellingProcess modelling
Process modelling
Fajar Baskoro
 

What's hot (20)

Sadcw 6e chapter8
Sadcw 6e chapter8Sadcw 6e chapter8
Sadcw 6e chapter8
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
System Analysis and Design
System Analysis and Design System Analysis and Design
System Analysis and Design
 
System design
System designSystem design
System design
 
System Analysis and design Class 1
System Analysis and design Class 1System Analysis and design Class 1
System Analysis and design Class 1
 
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by KeylabsSAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
 
Requirement analysis and specification, software engineering
Requirement analysis and specification, software engineeringRequirement analysis and specification, software engineering
Requirement analysis and specification, software engineering
 
Sadcw 6e chapter5
Sadcw 6e chapter5Sadcw 6e chapter5
Sadcw 6e chapter5
 
Sadcw 6e chapter12
Sadcw 6e chapter12Sadcw 6e chapter12
Sadcw 6e chapter12
 
Ch04 agile development models
Ch04 agile development modelsCh04 agile development models
Ch04 agile development models
 
System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14
 
5 investigating system requirements
5 investigating system requirements5 investigating system requirements
5 investigating system requirements
 
Chap01
Chap01Chap01
Chap01
 
System Design and Analysis 1
System Design and Analysis 1System Design and Analysis 1
System Design and Analysis 1
 
Structured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and DesignStructured Vs, Object Oriented Analysis and Design
Structured Vs, Object Oriented Analysis and Design
 
Transition to System Design
Transition to System DesignTransition to System Design
Transition to System Design
 
Requirements analysis and modeling
Requirements analysis and modelingRequirements analysis and modeling
Requirements analysis and modeling
 
Data Staging Strategy
Data Staging StrategyData Staging Strategy
Data Staging Strategy
 
SRS(software requirement specification)
SRS(software requirement specification)SRS(software requirement specification)
SRS(software requirement specification)
 
Process modelling
Process modellingProcess modelling
Process modelling
 

Viewers also liked

11 si(systems analysis and design )
11 si(systems analysis and design )11 si(systems analysis and design )
11 si(systems analysis and design )
Nurdin Al-Azies
 
05 si(systems analysis and design )
05 si(systems analysis and design )05 si(systems analysis and design )
05 si(systems analysis and design )
Nurdin Al-Azies
 
Presentation sso design_security
Presentation sso design_securityPresentation sso design_security
Presentation sso design_security
Marco Morana
 
Modeling System Requirements
Modeling System RequirementsModeling System Requirements
Modeling System Requirements
Asjad Raza
 
Algebra formulas
Algebra formulas Algebra formulas
Algebra formulas
Matthew McKenzie
 
Online Banking Project
Online Banking ProjectOnline Banking Project
Online Banking Project
M.Saber
 
School admission process management system (Documention)
School admission process management system (Documention)School admission process management system (Documention)
School admission process management system (Documention)Shital Kat
 
Online shopping cart system file
Online shopping cart system fileOnline shopping cart system file
Online shopping cart system file
Sunil Jaiswal
 
java Project report online banking system
java Project report online banking systemjava Project report online banking system
java Project report online banking system
VishNu KuNtal
 
Internet Banking PPT
Internet Banking PPTInternet Banking PPT
Internet Banking PPT
ayush goyal
 

Viewers also liked (11)

11 si(systems analysis and design )
11 si(systems analysis and design )11 si(systems analysis and design )
11 si(systems analysis and design )
 
05 si(systems analysis and design )
05 si(systems analysis and design )05 si(systems analysis and design )
05 si(systems analysis and design )
 
Sadcw 6e chapter6
Sadcw 6e chapter6Sadcw 6e chapter6
Sadcw 6e chapter6
 
Presentation sso design_security
Presentation sso design_securityPresentation sso design_security
Presentation sso design_security
 
Modeling System Requirements
Modeling System RequirementsModeling System Requirements
Modeling System Requirements
 
Algebra formulas
Algebra formulas Algebra formulas
Algebra formulas
 
Online Banking Project
Online Banking ProjectOnline Banking Project
Online Banking Project
 
School admission process management system (Documention)
School admission process management system (Documention)School admission process management system (Documention)
School admission process management system (Documention)
 
Online shopping cart system file
Online shopping cart system fileOnline shopping cart system file
Online shopping cart system file
 
java Project report online banking system
java Project report online banking systemjava Project report online banking system
java Project report online banking system
 
Internet Banking PPT
Internet Banking PPTInternet Banking PPT
Internet Banking PPT
 

Similar to Sadcw 6e chapter4

Sadcw 7e chapter04(1)
Sadcw 7e chapter04(1)Sadcw 7e chapter04(1)
Sadcw 7e chapter04(1)
LamineKaba6
 
Requirements modeling
Requirements modelingRequirements modeling
Requirements modeling
AnanthiP8
 
Building an Information System
Building an Information SystemBuilding an Information System
Building an Information System
Jo Balucanag - Bitonio
 
Slides chapters 6-7
Slides chapters 6-7Slides chapters 6-7
Slides chapters 6-7
Priyanka Shetty
 
6. ch 5-understanding requirements
6. ch 5-understanding requirements6. ch 5-understanding requirements
6. ch 5-understanding requirements
Delowar hossain
 
Mca1040 system analysis and design
Mca1040  system analysis and designMca1040  system analysis and design
Mca1040 system analysis and design
smumbahelp
 
SMD Unit ii
SMD Unit iiSMD Unit ii
SMD Unit ii
madhavi patil
 
Creating a Use Case
Creating a Use Case                                               Creating a Use Case
Creating a Use Case
CruzIbarra161
 
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdfData_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
Nho Vĩnh
 
chapter 5 Objectdesign.ppt
chapter 5 Objectdesign.pptchapter 5 Objectdesign.ppt
chapter 5 Objectdesign.ppt
TemesgenAzezew
 
Data Structure and its Fundamentals
Data Structure and its FundamentalsData Structure and its Fundamentals
Data Structure and its Fundamentals
Hitesh Mohapatra
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES) International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
irjes
 
Modeling- Object, Dynamic and Functional
Modeling- Object, Dynamic and FunctionalModeling- Object, Dynamic and Functional
Modeling- Object, Dynamic and Functional
Rajani Bhandari
 

Similar to Sadcw 6e chapter4 (20)

Sadcw 7e chapter04(1)
Sadcw 7e chapter04(1)Sadcw 7e chapter04(1)
Sadcw 7e chapter04(1)
 
Requirements modeling
Requirements modelingRequirements modeling
Requirements modeling
 
Ch07
Ch07Ch07
Ch07
 
Ch07
Ch07Ch07
Ch07
 
Building an Information System
Building an Information SystemBuilding an Information System
Building an Information System
 
Slides chapters 6-7
Slides chapters 6-7Slides chapters 6-7
Slides chapters 6-7
 
SE chapters 6-7
SE chapters 6-7SE chapters 6-7
SE chapters 6-7
 
6. ch 5-understanding requirements
6. ch 5-understanding requirements6. ch 5-understanding requirements
6. ch 5-understanding requirements
 
Mca1040 system analysis and design
Mca1040  system analysis and designMca1040  system analysis and design
Mca1040 system analysis and design
 
Final
FinalFinal
Final
 
SMD Unit ii
SMD Unit iiSMD Unit ii
SMD Unit ii
 
Ooad
OoadOoad
Ooad
 
Creating a Use Case
Creating a Use Case                                               Creating a Use Case
Creating a Use Case
 
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdfData_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
Data_Structure_and_Algorithms_Using_C++ _ Nho Vĩnh Share.pdf
 
chapter 5 Objectdesign.ppt
chapter 5 Objectdesign.pptchapter 5 Objectdesign.ppt
chapter 5 Objectdesign.ppt
 
Data Structure and its Fundamentals
Data Structure and its FundamentalsData Structure and its Fundamentals
Data Structure and its Fundamentals
 
5 transition to design
5 transition to design5 transition to design
5 transition to design
 
SECh78
SECh78SECh78
SECh78
 
International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES) International Refereed Journal of Engineering and Science (IRJES)
International Refereed Journal of Engineering and Science (IRJES)
 
Modeling- Object, Dynamic and Functional
Modeling- Object, Dynamic and FunctionalModeling- Object, Dynamic and Functional
Modeling- Object, Dynamic and Functional
 

Recently uploaded

Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 

Recently uploaded (20)

Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 

Sadcw 6e chapter4

  • 1. Chapter 4 Systems Analysis and Design in a Changing World, 6t 1
  • 2. Domain Classes Chapter 4 Systems Analysis and Design in a Changing World 6th Ed Satzinger, Jackson & Burd
  • 3. Chapter 4 Outline  “Things” in the Problem Domain Data entities  Domain classes   The Domain Model Class Diagram  The Entity-Relationship Diagram Systems Analysis and Design in a Changing World, 6t 3
  • 4. Learning Objectives Explain how the concept of “things” in the problem domain also define requirements  Identify and analyze data entities and domain classes needed in the system  Read, interpret, and create an entity-relationship diagram  Read, interpret, and create a domain model class diagram  Understand the domain model class diagram for the RMO Consolidated Sales and Marketing System  Systems Analysis and Design in a Changing World, 6t 4
  • 5. Overview Chapter 3 provided an overview of identifying use cases to define functional requirements  This chapter focuses on another key concepts for defining requirements— data entities or domain classes  In the RMO Tradeshow System from Chapter 1, some domain classes are Supplier, Product, and Contact  In this chapter’s opening case Waiters on Call, examples of domain classes are Restaurants, Menu items, Customers, Orders, Drivers, Addresses, Routes, and Payments  Systems Analysis and Design in a Changing World, 6t 5
  • 6. Things in the Problem Domain Problem domain—the specific area (or domain) of the users’ business need that is within the scope of the new system.  “Things” are those items users work with when accomplishing tasks that need to be remembered  Examples of “Things” are products, sales, shippers, customers, invoices, payments, etc.  These “Things” are modeled as domain classes or data entities  In this course, we will call them domain classes. In database class you call them data entities  Systems Analysis and Design in a Changing World, 6t 6
  • 7. Things in the Problem Domain Two Techniques for Identifying them  Brainstorming  Use a checklist of all of the usual types of things typically found and brainstorm to identify domain classes of each type  Noun  Technique Technique Identify all of the nouns that come up when the system is described and determine if each is a domain class, an attribute, or not something we need to remember Systems Analysis and Design in a Changing World, 6t 7
  • 8. Brainstorming Technique  Are there any tangible things? Are there any organizational units? Sites/locations? Are there incidents or events that need to be recorded? Systems Analysis and Design in a Changing World, 6t 8
  • 9. Brainstorming Technique: Steps 1. 2. 3. 4. 5. Identify a user and a set of use cases Brainstorm with the user to identify things involved when carrying out the use case—that is, things about which information should be captured by the system. Use the types of things (categories) to systematically ask questions about potential things, such as the following: Are there any tangible things you store information about? Are there any locations involved? Are there roles played by people that you need to remember? Continue to work with all types of users and stakeholders to expand the brainstorming list Merge the results, eliminate any duplicates, and compile an initial list Systems Analysis and Design in a Changing World, 6t 9
  • 10. The Noun Technique A technique to identify problem domain classes (things) by finding, classifying, and refining a list of nouns that come up in in discussions or documents  Popular technique. Systematic.  Does end up with long lists and many nouns that are not things that need to be stored by the system  Difficulty identifying synonyms and things that are really attributes  Good place to start when there are no users available to help brainstorm  Systems Analysis and Design in a Changing World, 6t 10
  • 11. Partial List of Nouns for RMO With notes on whether to include as domain class Systems Analysis and Design in a Changing World, 6t 11
  • 12. The Noun Technique: Steps 1. Using the use cases, actors, and other information about the system— including inputs and outputs— identify all nouns.  2. For the RMO CSMS, the nouns might include customer, product item, sale, confirmation, transaction, shipping, bank, change request, summary report, management, transaction report, accounting, back order, back order notification, return, return confirmation… Using other information from existing systems, current procedures, and current reports or forms, add items or categories of information needed.  For the RMO CSMS, these might include price, size, color, style, season, inventory quantity, payment method, and shipping address. Systems Analysis and Design in a Changing World, 6t 12
  • 13. The Noun Technique: Steps (continued) 3. As this list of nouns builds, refine it. Ask these questions about each noun to help you decide whether you should include it:    Is it a unique thing the system needs to know about? Is it inside the scope of the system I am working on? Does the system need to remember more than one of these items? Ask these questions to decide to exclude it:    Is it really a synonym for some other thing I have identified? Is it really just an output of the system produced from other information I have identified? Is it really just an input that results in recording some other information I have identified? Ask these questions to research it:   Is it likely to be a specific piece of information (attribute) about some other thing I have identified? Is it something I might need if assumptions change? Systems Analysis and Design in a Changing World, 6t 13
  • 14. The Noun Technique: Steps (continued) 4. Create a master list of all nouns identified and then note whether each one should be included, excluded, or researched further. 5. Review the list with users, stakeholders, and team members and then define the list of things in the problem domain. Systems Analysis and Design in a Changing World, 6t 14
  • 15. Details about Domain Classes  Attribute— describes one piece of information about each instance of the class   Identifier or key   Customer has first name, last name, phone number One attribute uniquely identifies an instance of the class. Required for data entities, optional for domain classes. Customer ID identifies a customer Compound attribute  Two or more attributes combined into one structure to simplify the model. (E.g., address rather than including number, street, city, state, zip separately). Sometimes an identifier or key is a compound attribute. Systems Analysis and Design in a Changing World, 6t 15
  • 16. Attributes and Values  Class is a type of thing. Object is a specific instance of the class. Each instance has its own values for an attribute Systems Analysis and Design in a Changing World, 6t 16
  • 17. Associations Among Things  Association— a naturally occurring relationship between classes (UML term) Systems Analysis and Design in a Changing World, 6t 17
  • 18. Just to Clarify…  Called association on class diagram in UML    Called relationship on ERD in database class   Multiplicity is term for the number of associations between classes: 1 to 1 or 1 to many We are emphasizing UML in this text Cardinality is term for number of relationships in entity relationship diagrams: 1 to 1 or 1 to many Associations and Relationships apply in two directions    Read them separately each way A customer places an order An order is placed by a customer Systems Analysis and Design in a Changing World, 6t 18
  • 19. Minimum and Maximum Multiplicity  Associations have minimum and maximum constraints   minimum is zero, the association is optional If minimum is at least one, the association is mandatory Systems Analysis and Design in a Changing World, 6t 19
  • 20. Types of Associations  Binary Association   Unary Association (recursive)    Associations between exactly two different classes  Course Section includes Students  Members join Club Associations between two instances of the same class  Person married to person  Part is made using parts Ternary Association (three) N-ary Association (between n) Systems Analysis and Design in a Changing World, 6t 20
  • 21. Semantic Net Shows instances and how they are linked Example shows instances of three classes Quick quiz: How many associations are there? What are the minimum and maximum multiplicities in each direction? What type of associations are they? Systems Analysis and Design in a Changing World, 6t 21
  • 22. The Domain Model Class Diagram  Class   Domain Class   Classes that describe objects in the problem domain Class Diagram   A category of classification used to describe a collection of objects A UML diagram that shows classes with attributes and associations (plus methods if it models software classes) Domain Model Class Diagram  A class diagram that only includes classes from the problem domain, not software classes so no methods Systems Analysis and Design in a Changing World, 6t 22
  • 23. Domain Class Notation    Domain class has no methods Class name is always capitalized Attribute names are not capitalized and use camelback notation (words run together and second word is capitalized) Systems Analysis and Design in a Changing World, 6t 23
  • 24. A Simple Domain Model Class Diagram  Note: This diagram matches the semantic net shown previously     A customer places zero or more orders An order is placed by exactly one customer An order consists of one or more order items An order item is part of exactly one order Systems Analysis and Design in a Changing World, 6t 24
  • 25. UML Notation for Multiplicity Systems Analysis and Design in a Changing World, 6t 25
  • 26. Domain Model Class Diagram for a bank with many branches Systems Analysis and Design in a Changing World, 6t 26
  • 27. Domain Model Class Diagram for course enrollment at a university  Where is each student’s grade remembered in this model?   Each section has many grades and each grade is association with a student Each student has many grades and each grade is association with a section Systems Analysis and Design in a Changing World, 6t 27
  • 28. Refined Course Enrollment Model with an Association Class CourseEnrollment  Association class— an association that is treated as a class in a many to many association because it has attributes that need to be remembered, such as grade Systems Analysis and Design in a Changing World, 6t 28
  • 29. More Complex Issues about Classes: Generalization/Specialization Relationships  Generalization/Specialization   Superclass   the superior or more general class in a generalization/specialization hierarchy Subclass   A hierarchical relationship where subordinate classes are special types of the superior classes. Often called an Inheritance Hierarchy the subordinate or more specialized class in a generalization/specialization hierarchy Inheritance  the concept that subclasses classes inherit characteristics of the more general superclass Systems Analysis and Design in a Changing World, 6t 29
  • 31. Generalization/Specialization Inheritance for RMO Three Types of Sales   Abstract class— a class that allow subclasses to inherit characteristics but never gets instantiated. In Italics (Sale above) Concrete class— a class that can have instances Systems Analysis and Design in a Changing World, 6t 31
  • 32. Generalization/Specialization Inheritance for the Bank with Special Types of Accounts    A SavingsAccount has 4 attributes A CheckingAccount Has 5 attributes Note: the subclasses inherit the associations, too Systems Analysis and Design in a Changing World, 6t 32
  • 33. More Complex Issues about Classes: Whole Part Relationships   Whole-part relationship— a relationship between classes where one class is part of or a component portion of another class Aggregation— a whole part relationship where the component part exists separately and can be removed and replaced (UML diamond symbol, next slide)    Computer has disk storage devices Car has wheels Composition— a whole part relationship where the parts can no longer be removed (filled in diamond symbol)   Hand has fingers Chip has circuits Systems Analysis and Design in a Changing World, 6t 33
  • 34. Whole Part Relationships Computer and its Parts   Note: this is composition, with diamond symbol. Whole part can have multiplicity symbols, too (not shown) Systems Analysis and Design in a Changing World, 6t 34
  • 35. More on UML Relationships  There are actually three types of relationships in class diagrams     Association Relationships  These are associations discussed previously, just like ERD relationships Whole Part Relationships  One class is a component or part of another class Generalizations/Specialization Relationships  Inheritance So, try not to confuse relationship with association Systems Analysis and Design in a Changing World, 6t 35
  • 36. RMO CSMS Project Domain Model Class Diagrams      There are several ways to create the domain model class diagram for a project RMO CSMS has 27 domain classes overall Can create one domain model class diagram per subsystem for those working on a subsystem Can create one overall domain model class diagram to provide an overview of the whole system Usually in early iterations, an initial draft of the domain model class diagram is completed to guide development and kept up to date Systems Analysis and Design in a Changing World, 6t 36
  • 37. RMO CSMS Project Domain Model Class Diagrams      There are several ways to create the domain model class diagram for a project RMO CSMS has 27 domain classes overall Can create one domain model class diagram per subsystem for those working on a subsystem Can create one overall domain model class diagram to provide an overview of the whole system Usually in early iterations, an initial draft of the domain model class diagram is completed to guide development and kept up to date Systems Analysis and Design in a Changing World, 6t 37
  • 38. RMO CSMS Project Sales Subsystem Domain Model Class Diagrams Systems Analysis and Design in a Changing World, 6t 38
  • 39. RMO CSMS Project Customer Account Subsystem Domain Model Class Diagram Systems Analysis and Design in a Changing World, 6t 39
  • 40. RMO CSMS Project Complete Domain Model Class Diagram Systems Analysis and Design in a Changing World, 6t 40
  • 41. RMO CSMS Project Domain Model Class Diagrams  Given the complete RMO CSMS Domain Model Class Diagram and Sales and Customer Account subsystem examples:     Try completing the Order Fulfilment Subsystem Domain Model Class Diagram Try Completing the Marketing Subsystem Domain Model Class Diagram Try Completing the Reporting Subsystem Domain Model Class Diagram Review the use cases from Chapter 3 and decide what classes and associations from the complete model are required for each subsystem  Classes and associations might be duplicated in more than one subsystem model Systems Analysis and Design in a Changing World, 6t 41
  • 42. Entity-Relationship Diagrams ERD     An ERD shows basically the same information as a domain model class diagram It is not a UML diagram, but it is widely used by data analysts in database management There really is no standard notation, but most developers use the entity and crows feet notation shown in this text An ERD is not good for showing generalization/specialization relationships and whole part relationships Systems Analysis and Design in a Changing World, 6t 42
  • 43. Example of ERD Notation  A simple ERD without showing attributes Systems Analysis and Design in a Changing World, 6t 43
  • 44. ERD Cardinality Symbols often called the crows feet notation Systems Analysis and Design in a Changing World, 6t 44
  • 45. Expanded ERD with Attributes   Note: This diagram matches the semantic net shown previously Also matches a domain model class diagram shown previously Systems Analysis and Design in a Changing World, 6t 45
  • 46. An ERD for a Bank Systems Analysis and Design in a Changing World, 6t 46
  • 47. Summary      This chapter is the second of three that focuses on modeling functional requirements as a part of systems analysis “Things” in the problem domain are identified and modeled, called domain classes or data entities Two techniques for identifying domain classes/data entities are the brainstorming technique and the noun technique Domain classes have attributes and associations Associations are naturally occurring relationships among classes, and associations have minimum and maximum multiplicity Systems Analysis and Design in a Changing World, 6t 47
  • 48. Summary    The UML class diagram notation is used to create a domain model class diagram for a system. The domain model classes do not have methods because they are not yet software classes. There are actually three UML class diagram relationships: association relationships, generalization/specialization (inheritance) relationships, and whole part relationships Other class diagram concepts are abstract versus concrete classes, compound attributes, composition and aggregation, association classes, super classes and subclasses Systems Analysis and Design in a Changing World, 6t 48
  • 49. Summary    Entity-relationship diagrams (ERDs) show the same information as a domain model class diagram ERDs are preferred by database analysts and are widely used ERDs are not UML diagrams, and an association is called a relationship, multiplicity is called cardinality, and generalization/specialization (inheritance) and whole part relationships are usually not shown Systems Analysis and Design in a Changing World, 6t 49