package org.geotools.gml4wcs.bindings; import javax.xml.namespace.QName; import org.geotools.gml4wcs.GML; import org.geotools.xml.AbstractSimpleBinding; import org.geotools.xml.InstanceComponent; import org.opengis.temporal.Duration; /** * Binding object for the type http://www.opengis.net/gml:TimeDurationType. * * <p> * * <pre> * <code> * <simpleType name="TimeDurationType"> * <annotation> * <documentation xml:lang="en"> * Base type for describing temporal length or distance. The value space is further * constrained by subtypes that conform to the ISO 8601 or ISO 11404 standards. * </documentation> * </annotation> * <union memberTypes="duration decimal"/> * </simpleType> * * </code> * </pre> * * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/gml4wcs/bindings/TimeDurationTypeBinding.java $ */ public class TimeDurationTypeBinding extends AbstractSimpleBinding { /** * @generated */ public QName getTarget() { return GML.TimeDurationType; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Object parse(InstanceComponent instance, Object value) throws Exception { // TODO: implement and remove call to super return super.parse(instance, value); } }