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 the object is updated (possibly one of it's
7    * fields has changed - warning it's not neccesery the object's field might be updated
8    * to the same value).
9    * 
10   * @author Jimmy
11   *
12   * @param <T>
13   */
14  public class WorldObjectUpdatedEvent<T extends IWorldObject> extends WorldObjectEvent<T>  {
15  
16  	public WorldObjectUpdatedEvent(T updatedObject, long simTime) {
17  		super(updatedObject, simTime);
18  	}
19  	
20  }