CSC 509 Milestone 3

CSC 509 Milestone 3
Refined Initial Design and
View Design


ISSUED: Monday, 31 January 2000
DUE: Friday, 11 February 2000

Work on the following tasks:
  1. Refine model designs per group meetings of the week of 24 January.
  2. Work on view designs and implementations for top-level menus and major tool views.
  3. Integrate view design with stubbed model implementations, where a stubbed implementation of function ClassC.functionF is
    
    
    
    public class ClassC {
    
        ...
    
        public ReturnType functionF(ParmType1 parm1, ..., ParmTypeN parmN) {
            System.out.println("In ClassC.functionF");
            return null;   // or an appropriate null atomic value
        }
    
        ...
    
    }