CSC407/ECE450 Assignment 1b Sample Solution

Uses of Class
plan.dom.Customer

Packages that use Customer
plan.dom This package implements the domain object model which consists of classes representing domain concepts as drawn from the object-oriented analysis. 
 

Uses of Customer in plan.dom
 

Fields in plan.dom declared as Customer
private  Customer CustomerRequest.customer
           
 

Methods in plan.dom that return Customer
 Customer CustomerRequest.getCustomer()
           
 Customer Company.lookupOrCreateCustomer(java.lang.String name)
          Lookup a Customer and return it or return a new one if not found.
 

Constructors in plan.dom with parameters of type Customer
CustomerRequest(Feature f, Customer c, int desirability)
          Create a customer request from customer "c" for feature "f" with desirability "d".
 


CSC407/ECE450 Assignment 1b Sample Solution