View Javadoc

1   package cz.cuni.amis.pogamut.sposh.context;
2   
3   public interface IContext<AGENT> {
4   
5   	/**
6        * Get bot for this context.
7        * @return bot
8        */
9   	public AGENT getBot();
10  	
11  }