/**
 * Warehouse - this class represents a warehouse of Box objects
 * This is the part 1 version.  Rename to simply Warehouse as you 
 * begin to work with it.
 * 
 * @author Michael Norton, Nancy Harris and ...
 * @version 11/4/2007
 *
 * Acknowledgements: ...
 */
public class WarehouseV1
{
	// declarations
	//-------------
	private final Box SMALL;
	private final Box MEDIUM;
	private final Box LARGE;

	/**
	 * constructor - instantiate the constant boxes
	 */
	public WarehouseV1()
	{
		// to be written ...

	} // constructor



	
	/**
	 * getSmall - Returns a SMALL box
	 *
	 * @return the SMALL box
	 */
	public Box getSmall()
	{
		// to be written ...

	} // method getSmall

	/**
	 * geMedium - Returns a MEDIUM box
	 *
	 * @return the MEDIUM box
	 */
	public Box getMedium()
	{
		// to be written ...

	} // method getMedium
	
	/**
	 * getLarge - Returns a LARGE box
	 *
	 * @return the LARGE box
	 */
	public Box getLarge()
	{
		// to be written ...

	} // method getSmall

} // class Warehouse
