View Javadoc

1   package cz.cuni.amis.pogamut.base.component.bus.event;
2   
3   import cz.cuni.amis.pogamut.base.component.IComponent;
4   import cz.cuni.amis.pogamut.base.component.bus.IComponentEvent;
5   
6   /**
7    * Marks that the component has started its work.
8    * @author Jimmy
9    */
10  public interface IStartedEvent<SOURCE extends IComponent> extends IComponentEvent<SOURCE> {
11  	
12  	/**
13  	 * Provides human readable information why the component has started.
14  	 * @return
15  	 */
16  	public String getMessage();
17  	
18  }