// models lawyers // lawyers are like employees but get 5 extra vacation days, // use the pink form to ask for vacation and know how to sue public class Lawyer extends Employee { public Lawyer(int yearsWorked) { super(yearsWorked); } public int getVacationDays() { return super.getVacationDays() + 5; } public String getVacationForm() { return "pink"; } public void sue() { System.out.println("I'll see you in court!"); } public double getSalary() { return super.getSalary() + 5000 * getYearsWorked(); } }