Presentation is loading. Please wait.

Presentation is loading. Please wait.

Object-OrientedMethodologies

Similar presentations


Presentation on theme: "Object-OrientedMethodologies"— Presentation transcript:

1 Object-OrientedMethodologies
–The Rumbaugh et al. OMT –The Booch methodology – Jacobson's methodologies

2 Methodology •A methodology is explained as the science of methods. •A method is a set of procedures in which a specific goal is approached step by step

3 Types of Methodologies
1986: Booch came up with the object-oriented design concept, the Booch method. •1987: Sally Shlaer and Steve Mellor came up with the concept of the recursive design approach 1989: Beck and Cunningham came up with class-responsibility collaboration (CRC) cards.

4 •1990: Wirfs-Brock, Wilkerson, and Wiener came up with responsibilitydriven design. 1991: Peter Coad and Ed Yourdon developed the Coad lightweight and prototype-oriented approach.

5 1991: Jim Rumbaugh led a team at the research labs of General Electric to develop the object modeling technique (OMT). •1994: Ivar Jacobson introduced the concept of the use case

6 Many methodologies are available to choose from for system development, some of them are discussed below :-

7 Rumbaugh et. al.’s Object Modeling Technique (OMT)
OMT describes a method for the analysis, design, and implementation of a system using an object-oriented technique

8 OMT consists of four phases, which can be performed iteratively: –Analysis. The results are objects and dynamic and functional models. –System design. The result is a structure of the basic architecture of the system. –Object design. This phase produces a design document, consisting of detailed objects and dynamic and functional models. –Implementation. This activity produces reusable, extendible, and robust code

9 OMT separates modeling into three different parts: 1
OMT separates modeling into three different parts: 1. An object model, presented by the object model and the data dictionary. 2. A dynamic model, presented by the state diagrams and event flow diagrams. 3. A functional model, presented by data flow and constraints.

10

11

12

13 The Booch Methodology • The Booch methodology covers the analysis and design phases of systems development. • Booch sometimes is criticized for his large set of symbols.

14 The Booch Methodology The Booch method consists of the following diagrams: – Class diagrams – Object diagrams – State transition diagrams – Module diagrams – Process diagrams – Interaction diagrams

15

16

17 The Booch methodology Prescribes – A macro development process – A micro development process

18 The Macro Development Process •The macro development process consists of the following steps: – 1. Conceptualization – 2. Analysis and development of the model. – 3. Design or create the system architecture. – 4. Evolution or implementation. – 5. Maintenance.

19 The micro development process consists of the following steps: – 1
The micro development process consists of the following steps: – 1. Identify classes and objects. – 2. Identify class and object semantics. – 3. Identify class and object relationships. – 4. Identify class and object interfaces and implementation

20 The Jacobson et al. Methodologies
The Jacobson et al. Methodologies (e.g., OOBE, OOSE, and Objectory) cover the entire life cycle and stress traceability between the different phases

21 Use cases are scenarios for understanding system requirements
Use cases are scenarios for understanding system requirements. •A use case is an interaction between users and a system. •The use-case model captures the goal of the user and the responsibility of the system to its users.

22

23

24

25

26 UML The Unified Modeling Language was originally developed at Rational Software It is a modeling syntax aimed primarily at creating models of software-based systems, but can be used in a number of areas. It is Syntax only - UML is just a language; it tells you what model elements and diagrams are available and the rules associated with them. It does not tell you what diagrams to create.

27

28 Use Case Diagrams - shows an outside-in view of the procedures available in the use of the system. These are summary diagrams and between them should contain all use cases available in the system and so all the available functionality of the system, represented at a high level. Static Structure Diagrams - includes object and class diagrams. Most methods use class diagrams to describe the properties of the objects in the system and their relationships. Object diagrams are rarely used, except for examples of the way in which objects interact, and these are normally shown on sequence or communication diagrams.

29 Interaction Diagrams - these include communication and sequence diagrams, both of which show the way in which objects interact in order to fulfill the functionality of the use case. Activity Diagrams - a generic flow chart used much in business modeling and sometimes in use case modeling to indicate the overall flow of the use case. This diagram type replaces the need for dataflow diagrams but is not a main diagram type for the purposes of analysis and design. State Machine Diagrams - in information systems these tend to be used to describe the lifecycle of an important data entity. In real-time systems they tend to be used to describe state dependent behavior. Component Diagrams - show the types of components, their interfaces and dependencies in the software architecture that is the solution to the application being developed. Deployment Diagrams - show actual computing nodes, their communication relationships and the processes or components that run on them.

30 Use Case Diagrams

31 Introduction Getting started is the most difficulty part of any new process. In software modelling, the first thing you need to do is understand what are you going to model and ultimately develop. Creating a highest form details about a system--use case diagram--is an almost natural point of origin for the software design. A use case diagram is an excellent way to communicate to management, customers, and other non-development people what a system will do when it is completed.

32 University Record System (URS)
A University record system should keep information about its students and academic staff. Records for all university members are to include their id number, surname, given name, , address, date of birth, and telephone number. Students and academic staff each have their own unique ID number: studN (students), acadN (academic employee), where N is an integer (N>0). In addition to the attributes mentioned above: Students will also have a list of subjects they are enrolled in. A student cannot be enrolled in any more than 10 subjects. Academic employees will have a salary, and a list of subjects they teach. An academic can teach no more than 3 subjects.

33 Some Actions Supported by URS
The system should be able to handle the following commands. Add and remove university members (students, and academic staff) Add and Delete subjects Assign and Un-assign subjects to students Assign and Un-assign subjects to academic staff.

34 Use Case Diagrams Use Case diagrams show the various activities the users can perform on the system. System is something that performs a function. They model the dynamic aspects of the system. Provides a user’s perspective of the system.

35 Use Case Diagram - URS System
add member del member system user academic add subject del subject assg subject unass subject student enrol subject unenrol subject

36 Use Case Diagrams A set of ACTORS : roles users can play in interacting with the system. An actor is used to represent something that uses our system. A set of USE CASES: each describes a possible kind of interaction between an actor and the system. Uses cases are actions that a user takes on a system A number of RELATIONSHIPS between these entities (Actors and Use Cases). Relationships are simply illustrated with a line connecting actors to use cases.

37 Use Case Diagrams - Actors
An actor is a user of the system playing a particular role. Actor is shown with a stick figure. employer employee client

38 Use Case Diagrams – Use Cases
Use case is a particular activity a user can do on the system. Is represented by an ellipse. Following are two use cases for a library system. Borrow Reserve

39 Use Case Diagram – Example1 (Library)
library system borrow client employee reserve Order title Fine payment supervisor A Library System.

40 Use Case Diagram for Student Assessment Management System
Grade system Record grades Student View grades Teacher Distribute Report cards Create report cards Printing administrator

41 Use Case Vs Scenarios Each use case is one or more scenarios.
Add Subject Use Case : Scenario 1 : Subject gets added successfully. Scenario 2 : Adding the subject fails since the subject is already in the database. Enroll Subject Use Case: Scenario 1 : Student is enrolled for the subject. Scenario 2 : Enrollment fails since the student is already enrolled in the subject. Each scenario has a sequence of steps.

42 Scenarios Each scenario has a sequence of steps.
Scenario 1 : Student is enrolled for the subject. Student chooses the “enroll subject” action. Check the student has enrolled in less than 10 subjects. Check if the subject is valid. Assign the subject to the student.

43 Scenarios Each scenario has a sequence of steps.
Scenario 2 : Enrolling fails since the student is already enrolled in 10 subjects. Student chooses the “enroll subject” action. Check the student has enrolled in less than 10 subjects. Return an error message to the student.

44 Use Case Diagrams - Relationships
Inclusion Inclusion enables to reuse one use case's steps inside another use case. Extension Allows creating a new use case by adding steps to existing use cases Generalization Allows child use cases to inherit behavior from parent use cases

45 Use Case – Example (self service machine)
Buy a product Self service machine customer Collect Money Collector Self service machine Restock Supplier

46 Use Case – Example (self service machine – includes relationship)
Open Machine Restock Close Machine <<includes>> <<includes>> Open Machine Collect Close Machine <<includes>>

47 Use Case – Example (self service machine – extends relationship)
Restock Close Machine Open Machine <<includes>> Restock According to Sales <<extends>>

48 Use Case – Example (self service machine – generalize relationship): Actor-to-Actor relationship
generalized actor Supplier Agent specialized actor Restocker Collector

49 Use Case – Example (self service machine – generalize relationship): Actor-to-Actor relationship – example 2 generalized actor Cook specialized actor Mom Cook Father Cook

50 Use Case – Example (self service machine)
Buy a product Self Service Machine <<includes>> Open Machine customer Restock Close Machine <<includes>> Restock according to sales <<includes>> Open Machine Collect <<includes>> supplier Close Machine

51 From Use Case to Classes

52 Identify Classes (Extract Nouns)
A University record system should keep information about its students and academic staff. Records for all university members are to include their id number, surname, given name, , address, date of birth, and telephone number. Students and academic staff each have their own unique ID number: studN (students), acadN (academic employee), where N is an integer (N>0). In addition to the attributes mentioned above: Students will also have a list of subjects they are enrolled in. A student cannot be enrolled in any more than 10 subjects. Academic employees will have a salary, and a list of subjects they teach. An academic can teach no more than 3 subjects.

53 Nouns which are potential classes
A University record system should keep information about its students and academic staff. Records for all university members are to include their id number, surname, given name, , address, date of birth, and telephone number. Students and academic staff each have their own unique ID number: studN (students), acadN (academic employee), where N is an integer (N>0). In addition to the attributes mentioned above: Students will also have a list of subjects they are enrolled in. A student cannot be enrolled in any more than 10 subjects. Academic employees will have a salary, and a list of subjects they teach. An academic can teach no more than 3 subjects.

54 Classes identified in the first pass
UniversityRecordSystem - URS Student Academic Staff UniversityMembers Subject

55 URS - High Level Class Diagram
URSDataBase 1 1 * has has * UniversityMember Subject 0…10 0..3 AcademicStaff Student * takes 1 teaches

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71 VISIBILITY In domain modeling class diagrams, visibility defines whether attributes and operations of specific classes can be seen and used by other classes.

72


Download ppt "Object-OrientedMethodologies"

Similar presentations


Ads by Google