package org.geotools.wcs.bindings; import org.geotools.wcs.WCS; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/wcs:AbstractDescriptionType. * * <p> * <pre> * <code> * <complexType abstract="true" name="AbstractDescriptionType"> * <annotation> * <documentation>Human-readable descriptive information for the object it is included within.</documentation> * </annotation> * <complexContent> * <extension base="wcs:AbstractDescriptionBaseType"> * <sequence> * <element maxOccurs="unbounded" minOccurs="0" ref="wcs:metadataLink"/> * <element minOccurs="0" ref="wcs:description"/> * <element ref="wcs:name"/> * <element name="label" type="string"> * <annotation> * <documentation>Short human-readable label for this object, for human interface display. </documentation> * </annotation> * </element> * </sequence> * <attribute ref="gml:id" use="prohibited"/> * </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/wcs/bindings/AbstractDescriptionTypeBinding.java $ */ public class AbstractDescriptionTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.AbstractDescriptionType; } /** * <!-- 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); } }