View Javadoc

1   package cz.cuni.amis.pogamut.base.communication.worldview.object.event;
2   
3   import cz.cuni.amis.pogamut.base.communication.worldview.object.IWorldObject;
4   
5   /**
6    * This event is raised by WorldView whenever new object appears in the worldview. E.g. the agent sees it
7    * for the first time.
8    *
9    * @author Jimmy
10   *
11   * @param <T>
12   */
13  public class WorldObjectFirstEncounteredEvent<T extends IWorldObject> extends WorldObjectEvent<T> {
14  
15      public WorldObjectFirstEncounteredEvent(T appearedObject, long simTime) {
16          super(appearedObject, simTime);
17      }
18  }