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 ;9 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.018 * @see XmlElementDecl19 */20 @Retention (RUNTIME)21 @Target ({TYPE})22 public @interface XmlRegistry {23 }24