01: /*
02: * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
03: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04: */
05:
06: package javax.xml.bind.annotation;
07:
08: import java.lang.annotation.Retention;
09: import java.lang.annotation.Target;
10: import static java.lang.annotation.ElementType.TYPE;
11: import static java.lang.annotation.RetentionPolicy.RUNTIME;
12:
13: /**
14: * Marks a class that has {@link XmlElementDecl}s.
15: *
16: * @author <ul><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Sekhar Vajjhala, Sun Microsystems, Inc.</li></ul>
17: * @since JAXB 2.0
18: * @see XmlElementDecl
19: */
20: @Retention(RUNTIME)
21: @Target({TYPE})
22: public @interface XmlRegistry {
23: }
|