/* MAT 259 Zachary Rubin 1/19/09 This class creates an itemListing to describe an SPL itemtype */ class ItemListing { String label, type, format, category; //category = " " ; ItemListing(String l, String t, String f, String c) { label = l; type = t; format = f; if (c != null) category = c; else category = " "; } String getLabel() { return label; } String getType() { return type; } String getFormat() { return format; } String getCategory() { return category; } }