package class4_1_SuperVehicles_start;// Dr. Yoder. MSOE. 08 December 2016 public class Sailboat extends Vehicle { /** * Describe the car and its location * @return a string representation of the object. */ @Override public String toString() { return "A boat "+finishDescription(); } @Override public void acquireParts() { System.out.println("Get hull from hull manufacturerr"); } @Override public void putPartsTogether() { super.putPartsTogether(); System.out.println("Apply paint to hull"); } }