View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.base.communication.translator.event;
7   
8   import cz.cuni.amis.pogamut.base.communication.worldview.event.IWorldEvent;
9   
10  /**
11   * Simplest WorldChangeEvent to WorldEvent adapter.
12   * // TODO better name
13   * @author ik
14   */
15  public abstract class WorldEventIdentityWrapper implements IWorldEventWrapper, IWorldEvent {
16  
17      @Override
18      public IWorldEvent getWorldEvent() {
19          return this;
20      }
21  
22  	@Override
23  	public abstract long getSimTime();
24  
25  }