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

org.geotoolkit.internal.jaxb.gco.package-info Maven / Gradle / Ivy

Go to download

Basic utilities for XML marshalling and unmarshalling. Those utilities are built on top of the JAXB framework.

The newest version!
/*
 *    Geotoolkit.org - An Open Source Java GIS Toolkit
 *    http://www.geotoolkit.org
 *
 *    (C) 2008-2012, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2009-2012, Geomatys
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation;
 *    version 2.1 of the License.
 *
 *    This library is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *    Lesser General Public License for more details.
 */

/**
 * Miscellaneous objects and adapters defined in the {@code "gco"} namespace.
 * For example, a {@link java.lang.String} value has to be marshalled this way:
 *
 * {@preformat text
 *     my text
 * }
 *
 * In this example, {@code gco} is the prefix for the {@code http://www.isotc211.org/2005/gco}
 * namespace URL.
 * 

* This package includes: * *

    *
  • JAXB adapters for primitive types. * JAXB can write directly Java primitive type at marshalling time "as is". However ISO-19139 * requires those values to be surrounded by elements representing the data type. The role of * these adapters is to add these elements around the value.

  • * *
  • JAXB adapters for unit of measure as specified in the ISO-19103 * specifications. For example, a measure marshalled with JAXB will be formatted like * {@code 220.0}.

  • * *
  • JAXB adapters for date and time.

  • *
* * Classes prefixed by two letters, like {@code "GO_Decimal"}, are also wrappers around the actual * object to be marshalled. See the {@link org.geotoolkit.internal.jaxb.metadata} package for more * explanation around wrappers. Note that the two-letters prefixes used in this package (not to be * confused with the three-letters prefixes used in XML documents) are not defined by OGC/ISO * specifications; they are used only for consistency with current practice in * {@link org.geotoolkit.internal.jaxb.metadata} and similar packages. * * {@section Object identification and reference} *
    *
  • org.geotoolkit.metadata.iso public packages: *

      *
    • Implement the ISO 19139 {@code Foo_Type}, where Foo is the ISO name of a class.
    • *
    • Contains the {@code gco:ObjectIdentification} group of attributes ({@code id}, {@code uuid}).
    • *
    • May be subclasses of {@link org.geotoolkit.internal.jaxb.gco.ObjectIdentification} (but this is not always possible).
    • *

  • *
  • org.geotoolkit.internal.jaxb private packages: *

      *
    • Implement the ISO 19139 {@code Foo_PropertyType} as subclasses of the {@link org.geotoolkit.internal.jaxb.gco.PropertyType} class.
    • *
    • Contains the {@code gco:ObjectReference} group of attributes ({@code xlink}, {@code uuidref}).
    • *
    • Attributes are declared in the {@link org.geotoolkit.internal.jaxb.gco.ObjectReference} Java class.
    • *

  • *
*

* Those two kinds of types are marshalled as below: * * {@preformat xml * * * * ... * * * * } * * @author Cédric Briançon (Geomatys) * @author Martin Desruisseaux (Geomatys) * @version 3.19 * * @see javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter * * @since 2.5 * @module */ @XmlSchema(elementFormDefault = XmlNsForm.QUALIFIED, namespace = Namespaces.GCO, xmlns = { @XmlNs(prefix = "gco", namespaceURI = Namespaces.GCO), @XmlNs(prefix = "gmx", namespaceURI = Namespaces.GMX) }) @XmlAccessorType(XmlAccessType.NONE) /* * Do NOT define a package-level adapter for InternationalString, * because such adapter shall NOT apply to GO_CharacterString.getAnchor(). */ package org.geotoolkit.internal.jaxb.gco; import javax.xml.bind.annotation.XmlNs; import javax.xml.bind.annotation.XmlNsForm; import javax.xml.bind.annotation.XmlSchema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import org.geotoolkit.xml.Namespaces;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy