View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.translator.itemdescriptor;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Retention;
5   import java.lang.annotation.RetentionPolicy;
6   import java.lang.annotation.Target;
7   
8   /**
9    * This descriptor tells the that the field is subject for the reflection when building
10   * the descriptor for the particular item from the ItemCategory message.
11   * @author Jimmy
12   */
13  @Target(value={ElementType.FIELD})
14  @Retention(value=RetentionPolicy.RUNTIME)
15  public @interface ItemDescriptorField {
16  
17  }