package class9_3_VehicleFunctions_start;// Dr. Yoder. MSOE. 08 December 2016 public class Car extends Vehicle { public Car(double metersNorth) { super(metersNorth); } public Car(double metersNorth, double northMetersPerSec) { super(metersNorth,northMetersPerSec); } /** * Describe the car and its location * @return a string representation of the object. */ @Override public String toString() { return "A car at "+getNorthMeters()+" meters north"; } @Override public boolean equals(Object object) { return (object instanceof Car) && super.equals(object); } }