1 package cz.cuni.amis.pogamut.defcon.communication.messages;
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 * Whenever field inside JavaWorldObject is annotated by this annotation it will be automatically updated
10 * by JavaWorldObjectUpdate object.
11 *
12 * @author Jimmy
13 */
14 @Target(value=ElementType.FIELD)
15 @Retention(value=RetentionPolicy.RUNTIME)
16 public @interface Updatable {
17
18 }