// A class to represents Legal Secretaries public class LegalSecretary extends Secretary { // Files briefs public void fileBriefs() { System.out.println("Filing your briefs!"); } // Returns the salary of the Legal Secretary. Receives 5000 more than base pay. public double getSalary() { return super.getSalary() + 5000; } }