package cart; //ItemOfStuff - an item which has inventory //author - Lawrence Truett - FluffyCat.com //date - July 18, 2003 - San Diego, CA public class ItemOfStuff extends Item { public ItemOfStuff(long keyIn, double priceIn, String descriptionIn, ItemType typeIn, String smallGraphicIn, String largeGraphicIn) { super(keyIn, priceIn, descriptionIn, typeIn, smallGraphicIn, largeGraphicIn); this.setHasInventory(true); } public static String getItemClass() { return "Stuff Item"; } }