/**
 * WrappingPaper - represents a single piece of wrapping paper defined by its
 * length and width.
 *
 * @author <your name here>
 * @version <put date here>
 */
public class WrappingPaper
{
	// declarations
	//-------------
	private int length;	// The paper's length in inches
	private int width;	// The paper'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.
	 *
	 * @param lngth the length of the paper
	 * @param wdth the width of the paper
	 */
	public WrappingPaper ( int lngth, int wdth )
	{
		// To be written.

	} // explicit value constructor


	/**
	 * getArea - returns the paper's area in square inches
	 *
	 * @return the area of the paper in square inches
	 */
	public int getArea()
	{
		// To be written.

	} // method getArea


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

	} // method getLength


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

	} // method getWidth


	/**
	 * toString - returns a string in the form LxW where L is the
	 * length and W the width. Thus for a piece of wrapping paper that
	 * is 48 by 24, the string returned would be "48x24".
	 *
	 * @return String
	 */
	public String toString()
	{
		// To be written.

	} // method toString


	/**
	 * willFit - returns true if this piece of wrapping paper is large
	 * enough to wrap the box sent via the parameter. This is not necessarily 
	 * the "best fit".
	 *
	 * @param the box object to fit
	 * @return true if the paper is sufficiently large to wrap the box
	 */
	public boolean willFit( Box box )
	{
		// To be written.

	} // method willFit

} // class WrappingPaper

