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:RectifiedGridType. * * <p> * <pre> * <code> * <complexType name="RectifiedGridType"> * <annotation> * <documentation>A rectified grid has an origin and vectors that define its post locations.</documentation> * </annotation> * <complexContent> * <extension base="gml:GridType"> * <sequence> * <element name="origin" type="gml:PointType"/> * <element maxOccurs="unbounded" name="offsetVector" type="gml:VectorType"/> * </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/RectifiedGridTypeBinding.java $ */ public class RectifiedGridTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.RectifiedGridType; } /** * <!-- 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); } }