CS 1713 Introduction to Computer Science, Fall 2008 Project 3 Comments
- You should use the Event constants in the Person class,
e.g.
   events[Event.EVENT_DEGREE] = null;
- You should use the Event constants in the classes that
extend Event, e.g.
   super(Event.EVENT_BIRTH, time, source);
- You don't need a getType method in the subclasses.
- The Event toString should use the EVENT_NAMES.
- You don't need to write:
   if (isAlive() == true)
You can just do:
   if (isAlive())