package class4_1_SuperVehicles_start;// Dr. Yoder. MSOE. 08 December 2016 public class Car extends Vehicle { /** * Describe the car and its location * @return a string representation of the object. */ public String toString() { return "A car "+finishDescription(); } @Override public void acquireParts() { System.out.println("Use different parts to build framework"); System.out.println("Import wheels from different manufacturerer"); } }