1 5 6 package javax.xml.bind.annotation; 7 8 import java.lang.annotation.Retention ; 9 import java.lang.annotation.Target ; 10 11 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 12 import static java.lang.annotation.ElementType.METHOD ; 13 14 115 @Retention (RUNTIME) 116 @Target ({METHOD}) 117 public @interface XmlElementDecl { 118 125 Class scope() default GLOBAL.class; 126 127 135 String namespace() default "##default"; 136 137 146 String name(); 147 148 169 String substitutionHeadNamespace() default "##default"; 170 171 179 String substitutionHeadName() default ""; 180 181 189 String defaultValue() default "\u0000"; 190 191 195 public final class GLOBAL {} 196 } 197 | Popular Tags |