View Javadoc

1   package cz.cuni.amis.pogamut.sposh.context;
2   
3   /**
4    * Inteface for getting the agent for the context.
5    *
6    * @author Honza
7    * @param <AGENT> Access to the agent itself that.
8    */
9   public interface IContext<AGENT> {
10  
11      /**
12       * Get bot for this context.
13       *
14       * @return bot
15       */
16      public AGENT getBot();
17  }