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:VectorType. * * <p> * <pre> * <code> * <complexType name="VectorType"> * <annotation> * <documentation>A Vector is an ordered set of numbers called coordinates that represent a position in a coordinate reference system (CRS). For some application the components of the position may be adjusted to yield a unit vector.</documentation> * </annotation> * <simpleContent> * <restriction base="gml:DirectPositionType"/> * </simpleContent> * </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/VectorTypeBinding.java $ */ public class VectorTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.VectorType; } /** * <!-- 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); } }