1 5 6 7 package javax.xml.bind.annotation; 8 9 import javax.activation.DataHandler ; 10 import static java.lang.annotation.ElementType .*; 11 import java.lang.annotation.Retention ; 12 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 13 import java.lang.annotation.Target ; 14 15 52 @Retention (RUNTIME) 53 @Target ({FIELD,METHOD,PARAMETER}) 54 public @interface XmlAttachmentRef { 55 } 56 | Popular Tags |