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:SupportedCRSsType. * * <p> * <pre> * <code> * <complexType name="SupportedCRSsType"> * <annotation> * <documentation>Unordered list(s) of identifiers of Coordinate Reference Systems (CRSs) supported in server operation requests and responses. </documentation> * </annotation> * <sequence> * <choice> * <element maxOccurs="unbounded" name="requestResponseCRSs" type="gml:CodeListType"> * <annotation> * <documentation>Unordered list of identifiers of the CRSs in which the server can both accept requests and deliver responses for this data. These CRSs should include the native CRSs defined below. </documentation> * </annotation> * </element> * <sequence> * <element maxOccurs="unbounded" name="requestCRSs" type="gml:CodeListType"> * <annotation> * <documentation>Unordered list of identifiers of the CRSs in which the server can accept requests for this data. These CRSs should include the native CRSs defined below. </documentation> * </annotation> * </element> * <element maxOccurs="unbounded" name="responseCRSs" type="gml:CodeListType"> * <annotation> * <documentation>Unordered list of identifiers of the CRSs in which the server can deliver responses for this data. These CRSs should include the native CRSs defined below. </documentation> * </annotation> * </element> * </sequence> * </choice> * <element maxOccurs="unbounded" minOccurs="0" name="nativeCRSs" type="gml:CodeListType"> * <annotation> * <documentation>Unordered list of identifiers of the CRSs in which the server stores this data, that is, the CRS(s) in which data can be obtained without any distortion or degradation. </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/wcs/bindings/SupportedCRSsTypeBinding.java $ */ public class SupportedCRSsTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.SupportedCRSsType; } /** * <!-- 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); } }