rle.core.board.item
Interface ItemContainer

All Superinterfaces:
PlugIn
All Known Subinterfaces:
ItemSack
All Known Implementing Classes:
Equipment, Inventory, ItemContainerBase

public interface ItemContainer
extends PlugIn

Anything that can hold items. This specification is read-only to allow implementing classes freedom to define add/remove API's that fit their specific needs, however, note that listeners can still be added/removed generically.


Method Summary
 void addItemContainerListener(ItemContainerListener icl)
           
 boolean isEmpty()
          Whether this container is empty
 java.util.Set<Item> items()
          All items contained.
 void removeItemContainerListener(ItemContainerListener icl)
           
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 

Method Detail

items

java.util.Set<Item> items()
All items contained.


isEmpty

boolean isEmpty()
Whether this container is empty


addItemContainerListener

void addItemContainerListener(ItemContainerListener icl)

removeItemContainerListener

void removeItemContainerListener(ItemContainerListener icl)