1 package net.jcip.annotations; 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 14 15 33 @Target ({ElementType.FIELD, ElementType.METHOD}) 34 @Retention (RetentionPolicy.CLASS) 35 public @interface GuardedBy { 36 String value(); 37 } | Popular Tags |