// Allison Obourn, CSE 142 // Models secretaries who don't get more vacation days based on seniority // and know how to take dictation. public class Secretary extends Employee { // creates a new secretary public Secretary() { super(0); } // takes dictation public void takeDictation(String text) { System.out.println("dictation " + text); } }