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:CodeListType. * * <p> * <pre> * <code> * <complexType name="CodeListType"> * <annotation> * <documentation>List of values on a uniform nominal scale. List of text tokens. * In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string. * If a codeSpace attribute is present, then its value is a reference to * a Reference System for the value, a dictionary or code list.</documentation> * </annotation> * <simpleContent> * <extension base="gml:NameList"> * <attribute name="codeSpace" type="anyURI" use="optional"/> * </extension> * </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/CodeListTypeBinding.java $ */ public class CodeListTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GML.CodeListType; } /** * <!-- 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); } }