// A class to represent legal secretaries. public class LegalSecretary extends Secretary { public double getSalary() { // I make 5k more than Employee double baseSalary = super.getSalary(); return baseSalary + 5000.0; // $45,000.00 / year } public void goOnVacation() { System.out.println("I'm going on vacation for " + getVacationDays() + " days."); } public void fileLegalBriefs() { System.out.println("I could file all day!"); } }