// A class to represent lawyer employees. public class Lawyer extends Employee { // overrides the version from Employee class public int getVacationDays() { return 5 + super.getVacationDays(); } // overrides the version from Employee class public String getVacationForm() { return "Pink"; // use the pink form } // The Lawyer's unique behavior. public void sue() { System.out.println("I'll see you in court!"); } }