/**
 * BestWraps - We've got to have a main method, so here it is. All the real
 * work will occur in WrappingStation. This class (BestWraps) is complete!!! 
 * Do not add (or remove) anything here!
 *
 * @author <your name here>
 * @version <put date here>
 */
public class BestWraps
(
	/**
	 * main - the entry point into the application
	 */
	public static void main( String[] args )
	{
		WrappingStation wrap;
		wrap = new WrappingStation();
		
		wrap.start();

	} // method main

} // class BestWraps