// A class to represent lawyers. public class Lawyer extends Employee { public Lawyer(int years) { super(years); // call the Employee constructor } // lawyers get $5000 bonus salary per year worked public double getSalary() { return super.getSalary() + 5000 * getYears(); } // lawyers use the pink form public String getVacationForm() { return "pink"; } // lawyers get 5 extra vacation days public int getVacationDays() { return super.getVacationDays() + 5; } // the unique behavior of lawyers public void sue() { System.out.println("I'll see you in court!"); } }