/**
 * This class is complete! Do not add add anything here!
 *
 * @author Michael Norton
 * @version 04/11/2007
 */
public class Boxes {
    /**
     * We've got to have a main method, so here it is. All the real work will
     * occur in DukesShipping.
     *
     * @param args command line arguments
     */
    public static void main(String[] args) {
        DukesShipping ship;
        ship = new DukesShipping();
        ship.start();
    }
}
