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:TypedLiteralType. * * <p> * <pre> * <code> * <complexType name="TypedLiteralType"> * <annotation> * <documentation>A single value for a variable, encoded as a string. This type can be used for one value, for a spacing between allowed values, or for the default value of a parameter. The "type" attribute indicates the datatype of this value (default is a string). The value for a typed literal is found by applying the datatype mapping associated with the datatype URI to the lexical form string. </documentation> * </annotation> * <simpleContent> * <extension base="string"> * <attribute ref="wcs:type" use="optional"> * <annotation> * <documentation>Should be included unless the datatype is string, or this "type" attribute is included in an enclosing element. </documentation> * </annotation> * </attribute> * </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/wcs/bindings/TypedLiteralTypeBinding.java $ */ public class TypedLiteralTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.TypedLiteralType; } /** * <!-- 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); } }