View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.itemdescriptor;
2   
3   import cz.cuni.amis.pogamut.ut2004.communication.messages.ItemType;
4   
5   /**
6    * Interface marking the object as "typed" therefore being a subject for description
7    * by {@link ItemDescriptor}.
8    * 
9    * @author Ondrej
10   */
11  public interface ItemTyped {
12  
13      /**
14       * Returns ItemType as injected by ItemTranslator.
15       * @return
16       */
17      ItemType getType();
18  }