org.kaariboga.core
Interface BaseListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
Boga

public interface BaseListener
extends java.util.EventListener

Interface for events that can be fired by the kaariboga base.


Method Summary
 void baseKaaribogaArrived(BaseEvent e)
          Reaction when a kaariboga agent has arrived on the base or has been added on creation.
 void baseKaaribogaCreated(BaseEvent e)
          Reaction when a kaariboga agent has been put to a base and the base invoked the agent's onCreate method.
 void baseKaaribogaDestroyed(BaseEvent e)
          Reaction when a kaariboga agent has been destroyed.
 void baseKaaribogaLeft(BaseEvent e)
          Reaction when a kaariboga agent left the base.
 

Method Detail

baseKaaribogaCreated

public void baseKaaribogaCreated(BaseEvent e)
Reaction when a kaariboga agent has been put to a base and the base invoked the agent's onCreate method.

baseKaaribogaArrived

public void baseKaaribogaArrived(BaseEvent e)
Reaction when a kaariboga agent has arrived on the base or has been added on creation.

baseKaaribogaLeft

public void baseKaaribogaLeft(BaseEvent e)
Reaction when a kaariboga agent left the base.

baseKaaribogaDestroyed

public void baseKaaribogaDestroyed(BaseEvent e)
Reaction when a kaariboga agent has been destroyed.