CMIS 470 Structured Systems Design

Slides:



Advertisements
Similar presentations
Introduction to Object Orientation System Analysis and Design
Advertisements

Chapter 4 - Object-Oriented Analysis and Design in a Nutshell1 Chapter 4 Object-Oriented Analysis and Design in a Nutshell.
Chapters 7 & 9 System Scope
Chapter 22 Object-Oriented Systems Analysis and Design and UML Systems Analysis and Design Kendall and Kendall Fifth Edition.
CS3773 Software Engineering Lecture 03 UML Use Cases.
Use Case Diagram © copyright 2001 SNU OOPSLA Lab..
Object-Oriented Analysis and Design
Chapter 1 Object-Oriented System Development
Introduction To System Analysis and Design
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 The.
Object Oriented System Development with VB .NET
Irwin/McGraw-Hill Copyright © 2004 The McGraw-Hill Companies. All Rights reserved Whitten Bentley DittmanSYSTEMS ANALYSIS AND DESIGN METHODS6th Edition.
Topics Creating DFD Physical and logical DFD Event driven modeling
Documenting Requirements using Use Case Diagrams
© 2005 Prentice Hall3-1 Stumpf and Teague Object-Oriented Systems Analysis and Design with UML.
Systems Analysis & Design Sixth Edition Systems Analysis & Design Sixth Edition Toolkit Part 5.
© Copyright Eliyahu Brutman Programming Techniques Course.
Object Oriented Concepts. Movement toward Objects Instead of data-oriented or process-oriented Analysis, many firms are now moving to object-oriented.
Unified Modeling Language
Chapter 3 Object-Oriented Analysis of Library Management System(LMS)
Karolina Muszyńska Based on: G. Schneider, J.P. Winters „Stosowanie przypadków użycia” S. Wrycza, B.
USE Case Model.
Chapter 5: Modeling Systems Requirements: Events and Things
Introduction To System Analysis and design
Object-oriented methodology object models use case modeling unified modeling language the data dictionary the cornucopia case portfolio project Systems.
Systems Analysis and Design in a Changing World, Tuesday, Feb 27
Systems Analysis and Design in a Changing World, Fifth Edition
SOFTWARE ENGINEERING BIT-8 APRIL, 16,2008 Introduction to UML.
CIT UPES | Sept 2013 | Unified Modeling Language - UML.
Intro to UML - OO Class Diagrams Week 5 CMIS570. Plan for Tonight Object terms Unified Modeling Language history Class Diagrams Intro to Oracle Oracle.
Prepared by Afra`a Sayah. Introduction. Weekly Tasks. Plane Phase. Analysis Phase. Design Phase. Report Rules. Conclusion. 2.
CMIS 470 Structured Systems Design Object-Oriented Analysis and Design – Sequence Diagrams; BPP details Week 5.
Copyright 2002 Prentice-Hall, Inc. Modern Systems Analysis and Design Third Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich Chapter 20 Object-Oriented.
Unified Modeling Language, Version 2.0
5 Systems Analysis and Design in a Changing World, Fourth Edition.
Object-Oriented Sequence Diagrams
Introduction To System Analysis and Design
Use Cases Week 8 CMIS570. Refresher – Class Diagrams Appointment scheduling example Car Rental example E-Commerce example.
System Analysis System Analysis - Mr. Ahmad Al-Ghoul System Analysis and Design.
Copyright 2002 Prentice-Hall, Inc. Chapter 2 Object-Oriented Analysis and Design Modern Systems Analysis and Design Third Edition Jeffrey A. Hoffer Joey.
Structural Modeling. Objectives O Understand the rules and style guidelines for creating CRC cards, class diagrams, and object diagrams. O Understand.
IT 21103/41103 System Analysis & Design. Chapter 05 Object Modeling.
Kyung Hee University System Functional Model OOSD 담당조교 석사과정 이정환.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design, 2 nd Edition Copyright 2003 © John Wiley & Sons, Inc. All rights reserved.
Lecture 6: Structural Modeling
5 Systems Analysis and Design in a Changing World, Fifth Edition.
CIS 112 Exam Review. Exam Content 100 questions valued at 1 point each 100 questions valued at 1 point each 100 points total 100 points total 10 each.
1 Modeling System Requirements with Use Cases. 2 Why Do We Need Use Cases? Primary challenge in a system design process –ability to elicit correct and.
Software Engineering Software Engineering - Mr. Ahmad Al-Ghoul.
 Week08.  Review Schedule Weeks 8-14  This week o Review last class o Introduce Class Diagrams o ICE-03 Sheridan SYST Engineering Quality Systems.
1 Unified Modeling Language, Version 2.0 Chapter 2.
UML - Development Process 1 Software Development Process Using UML.
Fall 2007 Week 9: UML Overview MSIS 670: Object-Oriented Software Engineering.
Chapter 7 Part II Structuring System Process Requirements MIS 215 System Analysis and Design.
OBJECT ORIENTED APPROACH WITH THE UML
CHAPTER 6 OBJECT ANALYSIS.
Slide 1 Unified Modeling Language, Version 2.0 Object-Oriented SAD.
5 Systems Analysis and Design in a Changing World, Fourth Edition.
DATA REQIREMENT ANALYSIS
Roberta Roth, Alan Dennis, and Barbara Haley Wixom
The Movement To Objects
Systems Analysis and Design
Object-Oriented Analysis and Design
Unified Modeling Language
Introduction to Unified Modeling Language (UML)
Stumpf and Teague Object-Oriented Systems Analysis and Design with UML
Chapter 22 Object-Oriented Systems Analysis and Design and UML
Presentation transcript:

CMIS 470 Structured Systems Design Anne Powell, Ph.D. CMIS 470 Structured Systems Design Object-Oriented Analysis and Design – Terms, UML, Class Diagrams, Use Cases Week 4 SIUE

Plan for the week Object terms Unified Modeling Language history CMIS 470 Anne Powell, Ph.D. Plan for the week Object terms Unified Modeling Language history Use Case Diagrams Class Diagrams SIUE

Object-Oriented Analysis & Design Defines all of the types of objects that do the work of the system Shows how objects interact Object-oriented design Defines all additional object types needed to communicate with people and devices in the system Refines each type of object for implementation

Object-Oriented Approach Views information systems as collections of interacting objects that work together to accomplish tasks Objects - things in the computer system that can respond to messages No processes, programs, data entities, or files

Classes and Objects A class is a category of similar objects. Each object is an instance of a class – that is, one specific member of the class. Class is the template – it contains all the shared attributes and behaviors found in each object of the class.

Objects An object is a person, place, event, or thing about which we want to capture data and define processes. Where have you heard this definition before?

Objects versus Entity Objects can have behaviors. Behaviors are methods or operations that serve to specify what actions the object can perform. Object instance is assigned a unique identifier. Entities have primary and foreign keys. However, objects have attributes like entities.

Example! Appointment scheduling example

Characteristics of OO Approach Methods and Messages Encapsulation (Information Hiding) Hierarchical Inheritance Polymorphism

Behaviors / Methods / Messages Behaviors specify what the object can do. A method is nothing more than an action or process that an object can perform. Methods are very much like a function or procedure in a traditional programming language. A message is the information sent to objects to trigger methods. Essentially a function or procedure call from one object to another object.

Encapsulation / Information Hiding Combining of processes and data into a single object. All attributes and methods are all together/incorporated in definition of object. Makes it easier to create new object classes – knows what to do when you want to create a new patient.

Hierarchical Inheritance Classes can have “children” Parent is “base” or “super” class Child is “derived” or “sub” class Similar to subtypes and supertypes of entities.

Polymorphism The same message can be interpreted differently by different classes of objects.

Unified Modeling Language (UML) The Three Amigos – Booch, Jacobson, and Rumbaugh Objective was to provide a common vocabulary of object-based terms and diagramming techniques for any systems development project from analysis through implementation.

UML diagrams 9 diagrams Used throughout SDLC Use consistent syntax and notation. Key building block is the use-case.

O-O Diagrams Use-Case Captures business requirements for system Class Illustrates relationships between classes modeled in system Object Illustrates relationships between objects; used when actual instances of the classes will better communicate the model Sequence Models the behavior of classes within a use-case (temporal sequence) Collaboration Models the behavior of classes within a use-case (non-temporal sequence) Statechart Examines the behavior of one class within a use-case Activity Illustrates the flow of activities in a use-case Component Illustrates the physical structure of the software Deployment Shows the mapping of software to hardware components

Use-Case Requires you to break system into use cases, small logical pieces of the system and deal with each separately. In contrast, DFDs and ERDs encompass the entire system in one diagram.

Use-Case Diagrams Graphical specification of the system’s behavior from the perspective of the user(s). Describes what the system does without describing how the system does it. They are used to identify and communicate the high-level business requirements for the system.

Patient Admission System A patient will call in to schedule an appointment or cancel an appointment. The office employee should be able to look up the patient’s name to determine if this is an existing patient. The office employee should also be able to lookup any existing unpaid bills the patient may have with the doctor’s office. The system will look up available times and dates for an appointment. When a day/time works for the patient, the system will add a new appointment. Before available days and times can be recorded, an employee of the doctor’s office will need to create a master schedule. This master schedule will list all the doctor’s schedules and the days and times the office will be open for appointments. A doctor can alter his or her schedule. When this occurs, the doctor will inform the employee of any days/times when he/she is not available. In addition, the doctor can add days/times when he/she is available to see patients.

Use-Case contains: Actor Event/Use Case Association System boundary

Example! Patient Admission system

Example – Student fitness class When a student wants to add a new class, the manager will check the fitness class schedule for availability. The manager will notify the student of an opening, and the student will pay the fee if there is an opening. The student is then registered for the class. As new instructors are hired, their availability to teach a class will be recorded. Information on the type of class the instructor is certified to teach as well as the times he/she is available is recorded. At times, the fitness class schedule must be changed. When this occurs, the manager will change the fitness schedule, and will then notify the instructors and students who are affected by the change.

Another example – Placing an order over the internet Using the web, customers should be able to search for products and identify if the item is available. They should be able to order the item. The functionality that the system should have is listed below: Search through the inventory of products Place an order Receive marketing material on all products User should be able to place item into shopping cart User should be able to provide customer information including billing information.

Steps in creating a Use-Case 1. Identify use-cases (find major functions) 2. Draw the system boundary 3. Place use-cases on the diagram (6-8 use-cases per diagram) 4. Identify the actors 5. Add associations

In addition… Text documents to document use-cases since use-case diagram does not describe how those use cases are carried out by the actors. When describing the use-case, you should focus on its external behavior – how it interacts with the actors, rather than how the use case is performed inside the system.

Steps in Documentation 1. Create a use case template that has areas labeled Basic Course and Alternative Courses. 2. Ask “What happens?” 3. Ask “And then what happens?” 4. Ask “What else can happen?

Documentation examples Patient Admission Student fitness registration Placing a special order

Documentation 1.

Documentation 1.

TIPS Think usage scenario rather than functional requirements. Describe usage rather than attributes and methods. Don’t write use-case too tersely. Don’t ignore system responses. Don’t forget alternative courses of action.

Includes statement When one use-case needs to use another use-case Two types Internal – only other use-cases reference Both external actors and internal use-cases reference

Examples Order Entry Appointment scheduling

Class Diagrams Static Model During analysis, classes refer to the people, places, events, and things about which the system will capture information. What is this similar to?

Class Diagram vs ERD What would the class diagram contain that the ERD does not?

How to Draw the Class Each class is drawn using three part-rectangles. Let’s draw a class diagram for the Patient Admission System.

Three kinds of Methods Constructor Query Update

Relationships in Class Diagram Again, similar to relationship in ERD. However, maintained internally by system rather than by primary keys or foreign keys.

Multiplicity Just another name for cardinality … and a different way to show it

Multiplicity Instance Represen-tation Description Exactly one 1 A department has one and only one boss. Zero or more 0..* An employee has zero to many children. One or more 1..* A boss is responsible for one or more employees. Zero or one 0..1 An employee can be married to zero or one spouse. Specified range 2..4 An employee can take between two to four vacations each year. Multiple, disjoint range 1..3, 5 An employee is a member of one to three or five committees.

Creating a Class Diagram 1. Identify classes 2. Identify attributes and methods 3. Draw relationships between the classes.

For Next Class Meeting… CMIS 470 Anne Powell, Ph.D. For Next Class Meeting… Read pages 250-263 in book OO homework 1 DUE SIUE