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:intervalType. * * <p> * <pre> * <code> * <complexType name="intervalType"> * <annotation> * <documentation>An interval of values of a numeric quantity. This interval can be continuous or discrete, defined by a fixed spacing between adjacent valid values. Note that the "type" and "semantic" attributes for min/max and "res" may be different (timeInstant and duration). </documentation> * </annotation> * <complexContent> * <extension base="wcs:valueRangeType"> * <sequence> * <element minOccurs="0" name="res" type="wcs:TypedLiteralType"> * <annotation> * <documentation>The regular distance or spacing between the allowed values in this interval. Shall be included when the allowed values are NOT continuous in this interval. Shall not be included when the allowed values are continuous in this interval. </documentation> * </annotation> * </element> * </sequence> * </extension> * </complexContent> * </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/IntervalTypeBinding.java $ */ public class IntervalTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.intervalType; } /** * <!-- 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); } }