package class2_2_InterfaceParty_start;// Dr. Yoder. MSOE. 06 December 2016 /** * A car that can do car things */ public class Car implements Speaker { /** * The car honks gently */ public void speak() { System.out.println("Beep, beep"); } /** * The shop reports how much the repair cost */ public void repair() { System.out.println("The cost of the repairs is $1000"); } /** * @return a description of the Car */ public String toString() { return "Car"; } }