// A class to represent secretaries. public class Secretary extends Employee { public Secretary(int years) { super(years); // call new Employee(int) constructor } // public String getVacationForm() { // return super.getVacationForm(); // } public void takeDictation(String text) { System.out.println("Taking dictation of text: " + text); } }