1 5 6 package javax.xml.bind.annotation; 7 8 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; 9 import java.lang.annotation.Retention ; 10 import java.lang.annotation.Target ; 11 12 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 13 import static java.lang.annotation.ElementType.FIELD ; 14 import static java.lang.annotation.ElementType.METHOD ; 15 16 201 @Retention (RUNTIME) 202 @Target ({FIELD,METHOD}) 203 public @interface XmlElementRef { 204 210 Class type() default DEFAULT.class; 211 212 235 String namespace() default ""; 236 240 String name() default "##default"; 241 242 247 static final class DEFAULT {} 248 } 249 | Popular Tags |