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

Packages that use InventoryItem
org.starhope.appius.game   
org.starhope.appius.user   
 

Uses of InventoryItem in org.starhope.appius.game
 

Subclasses of InventoryItem in org.starhope.appius.game
 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
          This represents a song that the player can play in his/her MP3 Player controls in the user interface.
 class NamedInventoryItem
          TODO: The documentation for this type (NamedInventoryItem) is incomplete.
 class Pet
          TODO: The documentation for this type (Pet) is incomplete.
 class Stationery
           
 class TootBookAvatarBG
          WRITEME: Document this type.
 class TootBookBoxStyle
          WRITEME: Document this type.
 class TootBookIcon
          WRITEME: Document this type.
 class TootBookPageBG
          WRITEME: Document this type.
 class TootBookTheme
          Abstract template for TootBook Theme items.
 class TootBookTitleBG
          WRITEME: Document this type.
 class Vehicle
          TODO: The documentation for this type (Vehicle) is incomplete.
 

Methods in org.starhope.appius.game 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)
static InventoryItem InventoryItem.getFromInventory(ResultSet inv)
           
static InventoryItem InventoryItem.pullFromInventory(int id, int userID)
          WRITEME: document this method (brpocock, Sep 9, 2009)
 

Methods in org.starhope.appius.game 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.
static Class<? extends InventoryItem> InventoryItem.getClassForType(InventoryItemType theType)
          TODO: document this method (brpocock, Nov 19, 2009)
 Class<? extends InventoryItem> InventoryItem.getItemClass()
           
 

Uses of InventoryItem in org.starhope.appius.user
 

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
 InventoryItem User.getActiveItemByType(InventoryItemType t)
          Returns the active item for an item type.
 InventoryItem User.getActiveItemByType(String t)
          Returns the active item for an item type.
static InventoryItem User.getActiveItemByTypeAndUserID(int typeID, int userID)
          WRITEME: Document this field.
static InventoryItem User.getActiveItemByTypeAndUserID(InventoryItemType type, int userID)
          WRITEME: Document this field.
 InventoryItem[] User.getItemsByType(String typeString)
          Get all items that identify as the type string.
 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
private  HashSet<InventoryItem> User.getInventory()
           
 

Methods in org.starhope.appius.user with parameters of type InventoryItem
 void User.addItem(InventoryItem item)
          Add an item to the user's inventory.
 void User.equip(InventoryItem item)
          WRITEME: Document this field.
 boolean User.hasItem(InventoryItem item)
          WRITEME: document this method (brpocock, Sep 24, 2009)