/* (c) 2014 Open Source Geospatial Foundation - all rights reserved * (c) 2001 - 2013 OpenPlans * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.ows.xml.v1_0; import javax.xml.namespace.QName; import net.opengis.ows10.Ows10Factory; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/ows:MetadataType. * * <p> * <pre> * <code> * <complexType name="MetadataType"> * <annotation> * <documentation>This element either references or contains more metadata about the element that includes this element. To reference metadata stored remotely, at least the xlinks:href attribute in xlink:simpleLink shall be included. Either at least one of the attributes in xlink:simpleLink or a substitute for the AbstractMetaData element shall be included, but not both. An Implementation Specification can restrict the contents of this element to always be a reference or always contain metadata. (Informative: This element was adapted from the metaDataProperty element in GML 3.0.) </documentation> * </annotation> * <sequence> * <element minOccurs="0" ref="ows:AbstractMetaData"/> * </sequence> * <attributeGroup ref="xlink:simpleLink"> * <annotation> * <documentation>Reference to metadata recorded elsewhere, either external to this XML document or within it. Whenever practical, the xlink:href attribute with type anyURI should include a URL from which this metadata can be electronically retrieved. </documentation> * </annotation> * </attributeGroup> * <attribute name="about" type="anyURI" use="optional"> * <annotation> * <documentation>Optional reference to the aspect of the element which includes this "metadata" element that this metadata provides more information about. </documentation> * </annotation> * </attribute> * </complexType> * * </code> * </pre> * @generated */ public class MetadataTypeBinding extends AbstractComplexBinding { Ows10Factory owsfactory; public MetadataTypeBinding(Ows10Factory owsfactory) { this.owsfactory = owsfactory; } /** * @generated */ public QName getTarget() { return OWS.METADATATYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement return null; } }