package org.geotools.wcs.bindings; import javax.xml.namespace.QName; import net.opengis.wcs10.DomainSetType; import org.geotools.wcs.WCS; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/wcs:DomainSetType. * * <p> * * <pre> * <code> * <complexType name="DomainSetType"> * <annotation> * <documentation>Defines the spatial-temporal domain set of a coverage offering. The domainSet shall include a SpatialDomain (describing the spatial locations for which coverages can be requested), a TemporalDomain (describing the time instants or inter-vals for which coverages can be requested), or both. </documentation> * </annotation> * <choice> * <sequence> * <element ref="wcs:spatialDomain"/> * <element minOccurs="0" ref="wcs:temporalDomain"/> * </sequence> * <element ref="wcs:temporalDomain"/> * </choice> * </complexType> * * </code> * </pre> * * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/DomainSetTypeBinding.java $ */ public class DomainSetTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.DomainSetType; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return DomainSetType.class; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { return super.parse(instance, node, value); } }