CSC407/ECE450 Assignment 1b Sample Solution

Package plan.dom

This package implements the domain object model which consists of classes representing domain concepts as drawn from the object-oriented analysis.

See:
          Description

Interface Summary
FeatureList A list of features
 

Class Summary
Company A software company that builds products.
Customer Represents a customer of the software company.
CustomerRequest The request of a customer for a feature.
DefaultFeatureListImplementation Default implementation of FeatureList minus the getLabel() method
Employee An employee of the company.
Feature A feature request recorded against a given software product.
Priority Implements a priority type of {high, med, low}
Release Represents a possible release of a software product.
ReverseFeaturePlanningOrder Compares Features by in-plan desirability.
Software Represents a shipping software product.
 

Package plan.dom Description

This package implements the domain object model which consists of classes representing domain concepts as drawn from the object-oriented analysis.


CSC407/ECE450 Assignment 1b Sample Solution