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:AbstractGMLType. * * <p> * <pre> * <code> * <complexType abstract="true" name="AbstractGMLType"> * <annotation> * <documentation> The optional attribute "id" is omitted from this profile. </documentation> * <documentation>All complexContent GML elements are directly or indirectly derived from this abstract supertype to establish a hierarchy of GML types that may be distinguished from other XML types by their ancestry. </documentation> * </annotation> * <sequence> * <element maxOccurs="unbounded" minOccurs="0" ref="gml:metaDataProperty"/> * <element minOccurs="0" ref="gml:description"/> * <element maxOccurs="unbounded" minOccurs="0" ref="gml:name"> * <annotation> * <documentation>Multiple names may be provided. These will often be distinguished by being assigned by different authorities, as indicated by the value of the codeSpace attribute. In an instance document there will usually only be one name per authority. </documentation> * </annotation> * </element> * </sequence> * </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/AbstractGMLTypeBinding.java $ */ public class AbstractGMLTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.AbstractGMLType; } /** * <!-- 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); } }