// Tyler Rigsby, CSE 142 // Models lawyers who can sue, get 5 more vacation days, use the pink form, and // get a $5000 raise every year public class Lawyer extends Employee { public Lawyer(int years) { super(years); } public int getSalary() { return super.getSalary() + 5000 * getYears(); } public int getVacationDays() { return 15; } public String getFormColor() { return "pink"; } public void sue() { System.out.println("I'll see you in court!"); } }