Uses of Class
org.starhope.appius.user.InventoryItem

Packages that use InventoryItem
org.starhope.appius.user   
 

Uses of InventoryItem in org.starhope.appius.user
 

Subclasses of InventoryItem in org.starhope.appius.user
 class ClothingItem
           
 class GameEquipItem
          An item which can be equipped by the player in the game world.
 class HomeDecorItem
          WRITEME: The documentation for this type (HomeDecorItem) is incomplete.
 class MusicItem
          WRITEME: The documentation for this type (MusicItem) is incomplete.
 

Fields in org.starhope.appius.user with type parameters of type InventoryItem
private  HashSet<InventoryItem> User.inventory
          All types of inventory in a single set.
 

Methods in org.starhope.appius.user that return InventoryItem
static InventoryItem InventoryItem.getByID(int idByWhichToGet)
          Get an inventory item based upon the database ID
static InventoryItem InventoryItem.getByID(int id, boolean isActive, int slotNum)
          WRITEME: document this method (brpocock, Aug 28, 2009)
 InventoryItem[] User.getItemsByType(String typeString)
          WRITEME: document this method (brpocock, Aug 28, 2009)
private  InventoryItem[] User.getItemsByType(String[] types)
          WRITEME: document this method (brpocock, Aug 28, 2009)
 

Methods in org.starhope.appius.user that return types with arguments of type InventoryItem
 Class<? extends InventoryItem> InventoryItem.getClassForThisType()
           
static Class<? extends InventoryItem> InventoryItem.getClassForType(int theTypeID)
          Find the class to which a type of item belongs.
 Class<? extends InventoryItem> InventoryItem.getItemClass()
           
 

Methods in org.starhope.appius.user with parameters of type InventoryItem
 void User.addItem(InventoryItem item)
          WRITEME: document this method (brpocock, Aug 31, 2009)
 boolean User.hasItem(InventoryItem item)