public class Prize { /** The prizes in this DB. */ java.util.ArrayList data; public Prize(String name, int id, String val, int quant, String descrip) { this.name = name; this.id = id; this.val = val; this.quant = quant; this.descrip = descrip; } public String getName() { return name; } public int getId() { return id; } public int getQuant() { return quant; } protected String name; protected int id; protected String val; protected int quant; protected String descrip; }