/* CSE 142, Autumn 2007, Marty Stepp A class to represent secretaries. */ public class Secretary extends Employee { // Call Employee constructor with a default parameter value of 0 public Secretary() { super(0); } // I "inherit" getHours, getSalary, getVacationDays, and getVacationForm public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } }