1 23 package javax.persistence; 24 25 import java.lang.annotation.Target ; 26 import java.lang.annotation.Retention ; 27 import static java.lang.annotation.ElementType.TYPE ; 28 import static java.lang.annotation.ElementType.METHOD ; 29 import static java.lang.annotation.ElementType.FIELD ; 30 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 31 32 50 @Target ({TYPE, METHOD, FIELD}) 51 @Retention (RUNTIME) 52 53 public @interface AttributeOverrides { 54 55 56 AttributeOverride[] value(); 57 } 58 | Popular Tags |