package class3_2_InheritanceVehicles_start;// Dr. Yoder. MSOE. 08 December 2016 public class Boat extends Vehicle { public Boat(String name) { super(name); } /** * Describe the car and its location * @return a string representation of the object. */ @Override public String toString() { return "A boat named "+super.toString(); } }