CSC407/ECE450 Assignment 1b Sample Solution

Uses of Class
plan.dom.Employee

Packages that use Employee
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 Employee in plan.dom
 

Fields in plan.dom declared as Employee
private  Employee Feature.champion
           
 

Methods in plan.dom that return Employee
 Employee Feature.getChampion()
           
 Employee Company.lookupOrCreateEmployee(java.lang.String name)
          Lookup an Employee and return it or return a new one if not found.
 

Methods in plan.dom with parameters of type Employee
 void Feature.setChampion(Employee e)
           
 


CSC407/ECE450 Assignment 1b Sample Solution