de.adom.jade.kernel
Class ActorAdapter

java.lang.Object
  extended by de.adom.jade.kernel.ActorAdapter
All Implemented Interfaces:
ActorListener

public class ActorAdapter
extends java.lang.Object
implements ActorListener

Implements a default actor listener without functionality.


Constructor Summary
ActorAdapter()
           
 
Method Summary
 void afterAction(ActorEvent event)
          Is called after an actor acts.
 void beforeAction(ActorEvent event)
          Is called before an actor acts.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActorAdapter

public ActorAdapter()
Method Detail

beforeAction

public void beforeAction(ActorEvent event)
Description copied from interface: ActorListener
Is called before an actor acts.

Specified by:
beforeAction in interface ActorListener
Parameters:
event - the actor event
See Also:
ActorListener.beforeAction(de.adom.jade.kernel.ActorEvent)

afterAction

public void afterAction(ActorEvent event)
Description copied from interface: ActorListener
Is called after an actor acts.

Specified by:
afterAction in interface ActorListener
Parameters:
event - the actor event
See Also:
ActorListener.afterAction(de.adom.jade.kernel.ActorEvent)