CMPE 135: Object-Oriented Analysis and Design August 31 Class Meeting

Slides:



Advertisements
Similar presentations
Use Case & Use Case Diagram
Advertisements

Use Case Modeling SJTU. Unified Modeling Language (UML) l Standardized notation for object-oriented development l Needs to be used with an analysis and.
UML and Systems Analysis MIS3502: Application Integration and Evaluation David Schuff
Requirements and Design
Information System Design IT60105 Lecture 3 System Requirement Specification.
CS3773 Software Engineering Lecture 03 UML Use Cases.
CS 160: Software Engineering September 8 Class Meeting Department of Computer Science San Jose State University Fall 2014 Instructor: Ron Mak
Requirements Analysis CS 414 – Software Engineering I Donald J. Bagert Rose-Hulman Institute of Technology January 7, 2003.
Unit 211 Requirements Phase The objective of this section is to introduce software system requirements and to explain different ways of expressing these.
1 CS 425 Software Engineering Project Preparation Use Case Modeling [Based on Chapters 3 & 4, Arlow and Neustadt, “UML and the Unified Process,” Addison-Wesley,
Introduction to Software Engineering Dr. Basem Alkazemi
CS 235: User Interface Design August 27 Class Meeting Department of Computer Science San Jose State University Spring 2015 Instructor: Ron Mak
CS 235: User Interface Design August 27 Class Meeting Department of Computer Science San Jose State University Fall 2014 Instructor: Ron Mak
The Software Development Life Cycle: An Overview
Requirements Elicitation. Requirement: a feature or constraint that the system must satisfy Requirements Elicitation: specification of the system that.
RUP Requirements RUP Artifacts and Deliverables
® IBM Software Group © 2006 IBM Corporation Writing Good Use Cases Module 4: Detailing a Use Case.
® IBM Software Group © 2006 IBM Corporation Rational Software France Object-Oriented Analysis and Design with UML2 and Rational Software Modeler 06. Requirements.
CS 151: Object-Oriented Design September 3 Class Meeting Department of Computer Science San Jose State University Spring 2013 Instructor: Ron Mak
Software Waterfall Life Cycle Requirements Construction Design Testing Delivery and Installation Operations and Maintenance Concept Exploration Prototype.
Using UML, Patterns, and Java Object-Oriented Software Engineering Chapter 4, Requirements Elicitation.
 Development is organized in a series of short, fixed-length mini-projects called iterations  Iterations are also incremental  Successive enlargement.
Faculty of Computer & Information
Yarmouk University Department of Computer Information Systems CIS 499 Yarmouk University Department of Computer Information Systems CIS 499 Yarmouk University.
CS 235: User Interface Design September 3 Class Meeting Department of Computer Science San Jose State University Fall 2014 Instructor: Ron Mak
1 Software Requirements l Specifying system functionality and constraints l Chapters 5 and 6 ++
CSC480 Software Engineering Lecture 8-9 September 20, 2002.
CS 151: Object-Oriented Design August 29 Class Meeting Department of Computer Science San Jose State University Spring 2012 Instructor: Ron Mak
CS 160 and CMPE/SE 131 Software Engineering February 18 Class Meeting Department of Computer Science Department of Computer Engineering San José State.
CS 160 and CMPE/SE 131 Software Engineering February 25 Class Meeting Department of Computer Science Department of Computer Engineering San José State.
Requirement Elicitation Review – Class 8 Functional Requirements Nonfunctional Requirements Software Requirements document Requirements Validation and.
Requirements. Outline Definition Requirements Process Requirements Documentation Next Steps 1.
 System Requirement Specification and System Planning.
Use Cases Discuss the what and how of use cases: Basics Examples Benefits Parts Stages Guidelines.
Pepper modifying Sommerville's Book slides
Using Use Case Diagrams
Chapter 4: Business Process and Functional Modeling, continued
CMPE 280 Web UI Design and Development August 29 Class Meeting
Use Case Modeling - II Lecture # 27.
ATM OO Design and Implementation Case Study
Use Cases Discuss the what and how of use cases: Basics Benefits
User-centred system design process
Recall The Team Skills Analyzing the Problem (with 5 steps)
Storyboarding and Game Design SBG, MBG620 Full Sail University
Requirements Analysis
Use Case Model.
CMPE 135: Object-Oriented Analysis and Design October 24 Class Meeting
Use Case Model Use case diagram.
Requirements Elicitation and Elaboration
Requirements: Use Case Models and Narratives
SE-565 Software System Requirements IV. Use Cases
Concepts, Specifications, and Diagrams
Requirements Reference: Software Engineering, by Ian Sommerville, 6th edition, Chapters 5, 6, & 8.
SAD ::: Spring 2018 Sabbir Muhammad Saleh
Software Engineering System Modeling Chapter 5 (Part 1) Dr.Doaa Sami
CIS 375 Bruce R. Maxim UM-Dearborn
Using Use Case Diagrams
Use Case Modeling.
Software Engineering System Modeling Chapter 5 (Part 1) Dr.Doaa Sami
CMPE 135 Object-Oriented Analysis and Design March 21 Class Meeting
CS 420/620 HCI Use Case Modeling Project Preparation
Use Case Modeling Part of the unified modeling language (U M L)
CS 425 Software Engineering
CMPE/SE 131 Software Engineering February 16 Class Meeting
CS 425/625 Software Engineering
Use Case Analysis – continued
CMPE 135 Object-Oriented Analysis and Design March 7 Class Meeting
Use cases Dr. X.
CMPE/SE 131 Software Engineering February 22 Class Meeting
Presentation transcript:

CMPE 135: Object-Oriented Analysis and Design August 31 Class Meeting Department of Computer Engineering San Jose State University Fall 2017 Instructor: Ron Mak www.cs.sjsu.edu/~mak

Encapsulation Success! Now whenever the guitar characteristics change, we only have to modify the GuitarSpec class. No other classes need to change. We don’t count the test class FindGuitarTester.

Summary Make sure your program works! Fix bugs and minimize their occurrence. Does your program do what the customer wants? Apply good object-oriented principles. Identify what changes and encapsulate it. Isolate changes to one class from the other classes.

Summary, cont’d Make your program flexible and maintainable. Make it flexible so it can handle changes in requirements. Use delegation to make your code more reusable. Cohesion: Each object handles its own task. Loosely coupled: Objects have few dependencies on each other.

OOA&D is about Satisfaction Customers are satisfied when their apps work. Customers are satisfied when their apps keep working. Customers are satisfied when their apps can be easily upgraded. Programmers are satisfied when their apps can be reused. Programmers are satisfied when their apps are flexible. OOA&D is about writing great software!

Team Projects Rock-Paper-Scissors game program. Well-written using good object-oriented design principles, of course. Human player vs. computer The computer will apply simple machine-learning techniques to defeat human players. Shared interfaces as contracts. Each team’s game program should be able to play another team’s program. It believes that it’s playing against a human player.

Requirements Elicitation Requires communication between the developers and customers. Customer: users, clients, and stakeholders Client: who pays for your application Stakeholder: whoever else is interested in the success of your application (e.g., shareholders) Customers can validate the requirements. Creates a contract between the customer and the developers.

Requirements Elicitation, cont’d Result: a Functional Specification written non-technically so that the customers can read and understand it.

Bridging the Gap Customers Software developers Have a general idea of what the system should do. Have little experience with software development. Are experts in their domain. Software developers May have little knowledge of the application domain. Have experience with software technology. Are geeks with poor social skills.

Functional Requirements What the system (the application) shall be able to do or allow users to do. The application shall use GPS to determine the user’s location. The application must default to the option most frequently chosen by the users. The application must allow the user to choose between a text display or a graphics display. The user shall be able to make an online withdrawal or deposit.

Functional Requirements, cont’d Describe the interactions between the system and its environment independent of its implementation.

Nonfunctional Requirements Usability, reliability, performance, supportability, etc. The application must respond to user input within 5 seconds. The application shall run on the Windows, Mac, and Linux platforms. The new GUI must resemble the old GUI. Error messages shall be displayed in English and Spanish. Constraints that the system must meet.

Requirements are Strong Statements Use strong declarative statements with “shall” and “must”. The application shall use GPS to determine the user’s location. The application must respond to user input within 5 seconds.

Requirements Must Be… Complete Consistent Clear Correct Are all system features and constraints described by requirements? Consistent No two requirements can contradict each other. Clear Each requirement must be unambiguous. Correct No errors in the requirements.

Requirements Must Be, cont’d Realistic Can the system be implemented? Verifiable Can the system be tested? Traceable Can each requirement be traced to an application function or constraint? Can each application function or constraint be traced to a requirement?

Requirements Must Be, cont’d Understandable Requirements must be written in non-technical jargon-free language that is meaningful to both the application’s developers and the application’s customers.

How to Get Requirements Interview future users of your application. Observe how the users currently work. Can you improve how they currently do things? Can you make them more productive? Stated requirements The customer tells you want he or she wants. Implied requirements What do you think the customer wants?

How to Get Requirements, cont’d Customers don’t always know what they want. They will know more after you show them a prototype. They will change their minds. It’s an iterative process!

How to Get Requirements, cont’d If the developers force the customers to come up with the requirements too soon, they may make something up! Such requirements will most likely be wrong or incomplete and lead you astray.

Use Cases A use case describes a single task that your application must allow an actor to accomplish or a single goal that an actor must achieve. Actors are external agents that interact or communicate with the system. actors = role abstractions An actor can be a person or another system.

Use Cases, cont’d Uses cases are an important way for the developers of a software application and its customers to communicate: What functionality the application must have. What steps to achieve the functionality. An application’s use cases capture the bulk of the customer’s understanding of what the application is supposed to do.

Use Cases, cont’d A use case includes: A complete sequence of actions or events from the point of view of an actor. A primary sequence Alternate sequences (“exception paths”). A sequence is triggered by an actor. Focus on what the system must do, not how to do it. A use case treats the system as a “black box”.

Example: Bank ATM System Log in customer Display balance Shut down ATM Start up Log out Withdraw cash system boundary Operator Customer Bank use cases actor When you draw a use case diagram, do not include the red labels and arrows. interaction UML use case diagram

Example Use Case Description Name: Withdraw Cash Goal: Customer withdraws cash from ATM. Summary: A customer who has logged in can withdraw up to $500 cash in $20 bills. Actors: The customer and the bank

Example Use Case Description, cont’d Preconditions: The ATM has been started up. See use case “Start up ATM”. The customer has inserted a valid bank card. The customer has entered a correct PIN. Trigger: The customer selects the “Withdraw Cash” option.

Example Use Case Description, cont’d Primary sequence: The system prompts the customer for the amount. The customer chooses from a list of amounts or enters a amount. The customer confirms and submits the amount. (The ATM communicates with the bank to check the customer’s account.) The system dispenses the amount in $20 bills. (The bank deducts the amount from the customer’s balance.) The system displays the customer’s balance See use case “Display balance”. At most about 10 steps. Another use case.

Example Use Case Description, cont’d Alternate sequences: 3.1 The customer entered an amount that is not a multiple of $20. 3.1.1 The system displays a message to the customer . 3.1.2. The system prompts the customer for a new amount. 3.2 The customer’s bank balance is insufficient. 3.2.1 etc.

Example Use Case Description, cont’d Postconditions: The customer receives the desired amount of cash. The amount is deducted from the customer’s account. The customer sees the new account balance. OR: The customer receives no cash. The customer’s account is unchanged. What must be true after the use case is done.

Example Use Case Description, cont’d Nonfunctional requirements: The system responds to each customer input within 15 seconds. The system displays messages in either English or Spanish. Glossary customer = a person who wants to withdraw cash from the ATM. bank = a system that maintains customer accounts and balances. etc.

Use Case Description Guidelines Use case names should be verb-object. Each name should describe an achievable goal or doable task (e.g., “Withdraw Cash”). Keep use cases short, simple, and informal. Clients and users need to understand them. No GUI or implementation details.

The Functional Specification Product name Clear problem statement What is the problem? Objectives What is your application supposed to accomplish? Functional requirements Nonfunctional requirements Use cases Primary contents of a Functional Specification

Assignment #1: Functional Specification Each project team creates the first draft of the Functional Specification for its Rock-Paper-Scissors game program (human vs. computer). Product name Problem statement Objectives 6 functional requirements 4 nonfunctional requirements Use case diagram with 6 use cases Use case descriptions of 3 of your use cases

Assignment #1, cont’d Each team turns in one Functional Specification. Microsoft Word document or PDF Canvas: Assignment #1 Due Friday, September 8 at 11:59 PM. Use case description form: http://www.cs.sjsu.edu/~mak/CMPE135/assignments/1/UseCaseForm.docx Formal report rubrics: http://www.cs.sjsu.edu/~mak/CMPE135/assignments/1/FormalReportRubrics.pdf