package org.geotools.gml4wcs.bindings; import org.geotools.gml4wcs.GML; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/gml:LinearRingType. * * <p> * <pre> * <code> * <complexType name="LinearRingType"> * <annotation> * <documentation>A LinearRing is defined by four or more coordinate tuples, with linear interpolation between them; the first and last coordinates must be coincident.</documentation> * </annotation> * <complexContent> * <extension base="gml:AbstractRingType"> * <sequence> * <annotation> * <documentation>This GML profile supports only one way to specify the control points of a linear ring: a sequence of "pos" (DirectPositionType).</documentation> * </annotation> * <element maxOccurs="unbounded" minOccurs="4" ref="gml:pos"/> * </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/gml4wcs/bindings/LinearRingTypeBinding.java $ */ public class LinearRingTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.LinearRingType; } /** * <!-- 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); } }