OO Analysis
Main Activities and Documentation
Identify the Objects
The next step is to identify and analyze all of the class/objects of interest. The items are called class/ objects because they identify a collection (class) of like instances (objects). The rules are summarized here:
- Underline all nouns in the summary paragraph.
- List the underlined verbs on a separate sheet of paper, using the exact same sequence and spelling as in the paragraph.
- Evaluate each noun to make sure it is an object. (Common errors are to include attributes objects, that are not of interest to the solution of this problem, or physical objects we do not keep information about).
- Determine whether the object is in the solution space (must be present both to describe the problem and to develop a solution) or the problem space (must be present to describe the problem).
- The solution space includes objects that are required both to describe the problem and to develop a solution. In ABC Video, 'customer' is necessary to both the problem definition and to the automated application solution. So, it is in the solution space.
- Name each unique object in the solution space. Ignore the processes in the problem space. Use the convention '=name' to identify duplicates of already named objects and to show that you know it is a duplicate.
Identify the Processes
- define each process’s steps/algorithm/formula
- define the pre-requests
OO Design
The seven steps to performing an object-oriented design are:
- Allocate objects to four subdomains, including human, hardware, software, or data.
- Develop time-event diagrams for each set of cooperating processes and their objects.
- Determine service objects to be used.
- Develop Booch diagrams.
- Define message communications.
- Develop process diagram.
- Develop package (i.e., module) specifications and prototype the application.