package roger.webster.cs161.wordsearch; import java.awt.Color; public class GroceryItem { //1200 2litercoke 1.19 each 55 private int ItemCode; private String Description; private double price; private String kind; private int quantity; public GroceryItem() { ItemCode = 0; Description = ""; price=0; kind = "each"; quantity=0; } public GroceryItem(int ic, String Desc, String kindof, double theprice, int q) { ItemCode = ic; Description = Desc; price= theprice; kind = kindof; quantity= q; } }