// Lawyers are employees who can sue, // have 3 weeks of vacation and use a pink form. public class Lawyer extends Employee { public int getVacationDays() { return super.getVacationDays() + 5; } public String getVacationForm() { return "pink"; } public void sue() { System.out.println("I'll see you in court!); } }