1 package org.jgroups.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 19 @Target ({ElementType.FIELD, ElementType.METHOD}) 20 @Retention (RetentionPolicy.SOURCE) 21 public @interface GuardedBy { 22 String value(); 23 } 24 | Popular Tags |