package class7_3_RemoteControl_start2; import java.util.Map; import java.util.TreeMap; /** * Command controller * @author hornick * */ public class CommandApp { /** * @param args - not used */ public static void main(String[] args) { Robot robot = new Robot("Roomba"); Car car = new Car("Pacer"); new ControlPanelUI(car, robot); // create the UI and go! } }