package carstruckstrains; /** * A program that displays stick figures of vehicles -- cars, trucks and trains. *

* The Main class contains the main method for the CarsTrucksTrains * application and hence is the starting point for that application. It * constructs and displays the frame that contains the drawing panel (for * vehicles) and controls panel (user interface). * * @author TODO PUT YOUR NAME HERE, October 2009, based on an assignment * suggested by Matt Boutell, with a design from a class exercise led by * David Mutchler. */ public class Main { /** * The CarsTrucksTrains application starts here in main. It * constructs the list of Vehicles and constructs and displays the frame * that contains the drawing panel (for vehicles) and controls panel (user * interface), sending the list of Vehicles to the frame. * * @param commandLineArguments * Array of command-line arguments (unused here) */ public static void main(String[] commandLineArguments) { // TODO Replace this auto-generated method stub by working code. } }