1 5 6 package javax.xml.bind.annotation; 7 8 import java.lang.annotation.Retention ; 9 import java.lang.annotation.Target ; 10 import java.awt.*; 11 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 12 import static java.lang.annotation.ElementType.FIELD ; 13 import static java.lang.annotation.ElementType.METHOD ; 14 import static java.lang.annotation.ElementType.PARAMETER ; 15 16 import javax.xml.transform.Source ; 17 18 33 @Retention (RUNTIME) 34 @Target ({FIELD,METHOD,PARAMETER}) 35 public @interface XmlMimeType { 36 40 String value(); 41 } 42 | Popular Tags |