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 74 @Target ({TYPE, METHOD, FIELD}) 75 @Retention (RUNTIME) 76 77 public @interface AttributeOverride { 78 79 84 String name(); 85 86 91 Column column(); 92 } 93 | Popular Tags |