View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.communication.messages.custom;
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    * Marks "simTime" field of the {@link ICustomControlMessage}.  
10   * @author Jimmy
11   */
12  @Target(value={ ElementType.FIELD })
13  @Retention(RetentionPolicy.RUNTIME)
14  public @interface ControlMessageSimType {
15  
16  }