View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package cz.cuni.amis.pogamut.base.communication.translator.event;
6   
7   import cz.cuni.amis.pogamut.base.communication.worldview.event.IWorldEvent;
8   
9   
10  /**
11   * Interface for classes wrapping the IWorldEvent.
12   * @author ik
13   */
14  public interface IWorldEventWrapper extends IWorldChangeEvent {
15      /**
16       * @return WorldEvent transported (wrapped) by this class
17       */
18      IWorldEvent getWorldEvent();
19  }