

/**
 * Insert the type's description here.
 * Creation date: (8/20/2002 2:39:58 PM)
 * @author Barry Martin
 */
public class Spud {
	private String spudName;
	private int quantity;
	private String packaging;
	private boolean inStock;
	private float price;

	public String getSpudName(){
		return this.spudName;
	}

	public void setSpudName(String name){
		this.spudName=name;
	}

	public int getQuantity (){
		return this.quantity;
	}

	public void setQuantity (int quantity){
		this.quantity=quantity;
	}

	public String getPackaging(){
		return this.packaging;
	}

	public void setPackaging(String packaging){
		this.packaging=packaging;
	}

	public float getPrice(){
		return this.price;
	}

	public void setPrice(float price){
		this.price=price;
	}

	public boolean inStock(){
		return this.inStock;
	}

	public void setStock(boolean stock){
		this.inStock=stock;
	}
}
