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   @Target(value={ ElementType.TYPE })
9   @Retention(RetentionPolicy.RUNTIME)
10  public @interface ControlMessageType {
11  
12  	public String type();
13  	
14  }