All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spinjar.javax.xml.bind.annotation.XmlNs Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2004, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package javax.xml.bind.annotation;

import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

/**
 * 

* Associates a namespace prefix with a XML namespace URI. * *

Usage

*

{@code @XmlNs} annotation is intended for use from other * program annotations. * *

See "Package Specification" in javax.xml.bind.package javadoc for * additional common information.

* *

Example:See {@code XmlSchema} annotation type for an example. * @author Sekhar Vajjhala, Sun Microsystems, Inc. * @since 1.6, JAXB 2.0 */ @Retention(RUNTIME) @Target({}) public @interface XmlNs { /** * Namespace prefix */ String prefix(); /** * Namespace URI */ String namespaceURI(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy