View Javadoc

1   package cz.cuni.amis.pogamut.defcon.communication.mailbox;
2   
3   /**
4    * Common interface to all ai-to-ai messages.
5    * 
6    * @author Radek 'Black_Hand' Pibil
7    * 
8    */
9   public interface IMessage {
10  	Object getMessage();
11  }