1 3 23 package org.xsocket; 24 25 import java.lang.annotation.ElementType ; 26 import java.lang.annotation.Retention ; 27 import java.lang.annotation.RetentionPolicy ; 28 import java.lang.annotation.Target ; 29 30 31 32 33 74 @Target (ElementType.TYPE) 75 @Retention (RetentionPolicy.RUNTIME) 76 public @interface Synchronized { 77 78 public enum Mode { OFF, CONNECTION } 79 80 Mode value() default Mode.CONNECTION; 81 } 82 | Popular Tags |