/** Customer - a basic customer class
 *  @author Nancy Harris, James Madison University
 *  @version 1.0
 */
 
 public class Customer
 {
 	private String name;
	
	/** Customer constructor
	 * 
	 * @param name The customer's name
	 */
	public Customer(String name)
	{
		this.name = name;
	}
	
	/** toString method returns the customer name
	 *
	 * @return String representing the customer name
	 */
	public String toString()
	{
		return name;
	}
}
