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.ElementType .*; 12 import static java.lang.annotation.RetentionPolicy .*; 13 14 100 101 @Retention (RUNTIME) @Target (PACKAGE) 102 public @interface XmlSchema { 103 104 109 XmlNs[] xmlns() default {}; 110 111 114 String namespace() default ""; 115 116 120 XmlNsForm elementFormDefault() default XmlNsForm.UNSET; 121 122 126 XmlNsForm attributeFormDefault() default XmlNsForm.UNSET; 127 128 177 String location() default NO_LOCATION; 178 179 184 static final String NO_LOCATION = "##generate"; 187 } 188 | Popular Tags |