/* Author: Jeff Dalton * Created: September 2000 * Updated: Sun May 20 17:07:35 2001 by Jeff Dalton * Copyright: (c) 2000, 2001, AIAI, University of Edinburgh */ package ix.ileed; import ix.icore.process.StatusValues; public class Product implements StatusValues { public String name = "No name"; public int status = PRODUCT_BLANK; public Product(String name) { this.name = name; } }