View Javadoc

1   package cz.cuni.amis.pogamut.base.communication.command;
2   
3   import cz.cuni.amis.pogamut.base.communication.messages.CommandMessage;
4   import cz.cuni.amis.utils.listener.IListener;
5   
6   /**
7    * This is an interface you need to implement, if you want to listen for a certain type of the command message that is sent
8    * by the agent. 
9    * 
10   * @author Jimmy
11   */
12  public interface ICommandListener<CMD extends CommandMessage> extends IListener<CMD> {
13  	
14  }