View Javadoc

1   package cz.cuni.amis.pogamut.multi.communication.translator.event;
2   
3   import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldChangeEvent;
4   import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldObjectUpdateResult;
5   import cz.cuni.amis.pogamut.base.communication.worldview.object.IWorldObjectEvent;
6   import cz.cuni.amis.pogamut.base.communication.worldview.object.WorldObjectId;
7   import cz.cuni.amis.pogamut.multi.communication.worldview.object.ILocalWorldObject;
8   
9   /**
10   * 
11   * @author srlok
12   *
13   */
14  public interface ILocalWorldObjectUpdatedEvent extends IWorldChangeEvent {
15  
16  	public WorldObjectId getId();
17  	
18  	public IWorldObjectUpdateResult<ILocalWorldObject> update(ILocalWorldObject object);
19  
20  }