package org.geotools.wcs.bindings; import org.geotools.wcs.WCS; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/wcs:RangeSubsetType. * * <p> * <pre> * <code> * <complexType name="RangeSubsetType"> * <annotation> * <documentation>Definition of a subset of the named coverage range(s). Currently, only a value enumeration definition of a range subset. </documentation> * </annotation> * <sequence> * <element maxOccurs="unbounded" name="axisSubset"> * <annotation> * <documentation>Ordered sequence of points and/or intervals along one axis of a compound range set. </documentation> * </annotation> * <complexType name="RangeSubsetType_axisSubset"> * <complexContent> * <extension base="wcs:valueEnumBaseType"> * <attribute name="name" type="string" use="required"> * <annotation> * <documentation>Name or identifier of one axis in this coverage. This name shall match that of an AxisDescription element in the DescribeCoverage XML response. </documentation> * </annotation> * </attribute> * </extension> * </complexContent> * </complexType> * </element> * </sequence> * </complexType> * * </code> * </pre> * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/branches/2.7.x/build/maven/javadoc/../../../modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/RangeSubsetTypeBinding.java $ */ public class RangeSubsetTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.RangeSubsetType; } /** * <!-- 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 and remove call to super return super.parse(instance,node,value); } }