/**
 * Box - represents a single box defined by its length, width and depth.
 *
 * @author <your name here>
 * @version <put date here>
 */
public class Box
{
	// declarations
	//-------------
	private int depth; // the box's depth in inches
	private int length;	// The box's length in inches
	private int width;	// The box's width in inches

	/**
	 * Explicit value constructor - create a box using the dimensions sent via the
	 * parameters. Note length should always be the longest side. Depth should always
    * be the shortest side.
	 *
	 * @param lngth the length of the box
	 * @param wdth the width of the box
	 * @param dpth the depth of the box
	 */
	public Box ( int lngth, int wdth, int dpth )
	{
		// To be written.

	} // explicit value constructor


	/**
	 * getDepth - returns the box's depth in inches
	 *
	 * @return the depth of the box
	 */
	public int getDepth()
	{
		// To be written.

	} // method getDepth


	/**
	 * getLength - returns the box's length in inches
	 *
	 * @return the length of the box
	 */
	public int getLength()
	{
		// To be written.

	} // method getLength


	/**
	 * getVolume - returns the box's volume in cubic inches
	 *
	 * @return the volume of the box in cubic inches
	 */
	public int getVolume()
	{
		// To be written.

	} // method getArea


	/**
	 * getWidth - returns the box's width in inches
	 *
	 * @return the width of the bpx
	 */
	public int getWidth()
	{
		// To be written.

	} // method getWidth


	/**
	 * toString - returns a string in the form LxWxD where L is the
	 * length, W the width, and D the depth. Thus for a box that
	 * is 48 by 24 x 9, the string returned would be "48x24x9".
	 *
	 * @return String
	 */
	public String toString()
	{
		// To be written.

	} // method toString


} // class WrappingPaper

