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.worldview.event;
7   
8   import cz.cuni.amis.utils.listener.Event;
9   
10  /**
11   * General interface for events occurring in the world.
12   * <p><p> 
13   * Source of these events is {@link IWorldView}.
14   * 
15   * @author ik
16   * @author srlok
17   */
18  public interface IWorldEvent extends Event {
19  
20  	/**
21  	 * Returns the simulation time when the event has occurred.
22  	 * @return
23  	 */
24  	public long getSimTime();
25  	
26  }