Uses of Class
mud.common.items.Item

Packages that use Item
mud.common.items   
mud.common.loader   
mud.common.objects   
 

Uses of Item in mud.common.items
 

Subclasses of Item in mud.common.items
 class Armor
           
 class UsableItem
          Can be used as a superclass for potions and stuff
 class Weapon
           
 

Uses of Item in mud.common.loader
 

Methods in mud.common.loader that return Item
 Item RoomLoader.loadItem(java.lang.String xmlString)
           
 

Uses of Item in mud.common.objects
 

Methods in mud.common.objects that return Item
 Item Inventory.getItemById(int itemId)
           
 Item Inventory.removeItem(int itemId)
           
 Item Inventory.removeItem(Item i)
           
 

Methods in mud.common.objects that return types with arguments of type Item
 java.util.List<Item> Inventory.getItems()
           
 

Methods in mud.common.objects with parameters of type Item
 void Inventory.addItem(Item i)
           
 void InventoryListener.onItemAdded(Item i)
           
 void InventoryListener.onItemRemoved(Item i)
           
 Item Inventory.removeItem(Item i)