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:AbstractGeometricPrimitiveType. * * <p> * <pre> * <code> * <complexType abstract="true" name="AbstractGeometricPrimitiveType"> * <annotation> * <documentation>This is the abstract root type of the geometric primitives. A geometric primitive is a geometric object that is not decomposed further into other primitives in the system. All primitives are oriented in the direction implied by the sequence of their coordinate tuples.</documentation> * </annotation> * <complexContent> * <extension base="gml:AbstractGeometryType"/> * </complexContent> * </complexType> * * </code> * </pre> * </p> * * @generated * * * @source $URL$ */ public class AbstractGeometricPrimitiveTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.AbstractGeometricPrimitiveType; } /** * <!-- 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); } }