View Javadoc

1   package cz.cuni.amis.pogamut.multi.agent;
2   
3   import cz.cuni.amis.pogamut.base.agent.IAgentId;
4   
5   /**
6    * Interface for agentId with a team.
7    * @author srlok
8    *
9    */
10  public interface ITeamedAgentId extends IAgentId {
11  	
12  	/**
13  	 * Returns the teamId associated with this agentId.
14  	 * @return
15  	 */
16  	ITeamId getTeamId();
17  	
18  }