KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > bind > annotation > XmlRegistry


1 /*
2  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
3  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4  */

5
6 package javax.xml.bind.annotation;
7
8 import java.lang.annotation.Retention JavaDoc;
9 import java.lang.annotation.Target JavaDoc;
10 import static java.lang.annotation.ElementType.TYPE JavaDoc;
11 import static java.lang.annotation.RetentionPolicy.RUNTIME JavaDoc;
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 JavaDoc(RUNTIME)
21 @Target JavaDoc({TYPE})
22 public @interface XmlRegistry {
23 }
24
Popular Tags