/* (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:DescriptionType. * * <p> * <pre> * <code> * <complexType name="DescriptionType"> * <annotation> * <documentation>Human-readable descriptive information for the object it is included within. * This type shall be extended if needed for specific OWS use to include additional metadata for each type of information. This type shall not be restricted for a specific OWS to change the multiplicity (or optionality) of some elements. </documentation> * </annotation> * <sequence> * <element minOccurs="0" ref="ows:Title"/> * <element minOccurs="0" ref="ows:Abstract"/> * <element maxOccurs="unbounded" minOccurs="0" ref="ows:Keywords"/> * </sequence> * </complexType> * * </code> * </pre> * @generated */ public class DescriptionTypeBinding extends AbstractComplexBinding { Ows10Factory owsfactory; public DescriptionTypeBinding(Ows10Factory owsfactory) { this.owsfactory = owsfactory; } /** * @generated */ public QName getTarget() { return OWS.DESCRIPTIONTYPE; } /** * <!-- 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; } }