Project Life Cycle  «Prev  Next»
Lesson 6 Object design
Objective Define the purpose and scope of object design.

Purpose and Scope of Object Design

Design Versus Construction
The purpose of the object design phase is to create a model of how a software solution will:
  1. Fulfill user expectations and requirements
  2. Support the architecture on which it will run

The scope of object design

There are three primary tasks of object design. To develop your model, you must:
  1. Define the internal implementation of each problem domain resource. During the problem analysis phase, you defined the resources of the problem domain, each with a purpose and an interface. Object design defines the internal behavior and attributes that support the purpose and interface of these resources.
  2. Add the classes that enable your software to support the use of the resources.
  3. Iterate through the model to enhance and refine it. With the addition of each new class, your model evolves. This evolution takes the form of iterative enhancement.
Object design also adds the objects that are unique to a software solution, for example, controllers, user interfaces, and database accessors.

Outside the scope of object design

During object design, try not to consider programming specifics. Just as in architectural analysis, maintain a requirements-based approach. Determine the goal and the best design approaches. Then use these criteria to guide your choices during construction.

Object Design - Quiz

Before you move on, click the Quiz link below to take a short multiple-choice quiz.
Object Design - Quiz