01: package org.geotools.wms.v1_1_1.bindings;
02:
03: import org.geotools.xml.*;
04: import org.opengis.metadata.extent.Extent;
05:
06: import javax.xml.namespace.QName;
07:
08: /**
09: * Binding object for the type :_Extent.
10: *
11: * <p>
12: * <pre>
13: * <code>
14: * <xs:complexType mixed="true" name="_Extent">
15: * <xs:attribute name="name" use="required"/>
16: * <xs:attribute name="default"/>
17: * <xs:attribute default="0" name="nearestValue">
18: * <xs:simpleType>
19: * <xs:restriction base="xs:token">
20: * <xs:enumeration value="0"/>
21: * <xs:enumeration value="1"/>
22: * </xs:restriction>
23: * </xs:simpleType>
24: * </xs:attribute>
25: * </xs:complexType>
26: *
27: * </code>
28: * </pre>
29: * </p>
30: *
31: * @generated
32: */
33: public class _ExtentBinding extends AbstractComplexBinding {
34:
35: /**
36: * @generated
37: */
38: public QName getTarget() {
39: return WMSV1_1_1._Extent;
40: }
41:
42: /**
43: * <!-- begin-user-doc -->
44: * <!-- end-user-doc -->
45: *
46: * @generated modifiable
47: */
48: public Class getType() {
49: return Extent.class;
50: }
51:
52: /**
53: * <!-- begin-user-doc -->
54: * <!-- end-user-doc -->
55: *
56: * @generated modifiable
57: */
58: public Object parse(ElementInstance instance, Node node,
59: Object value) throws Exception {
60:
61: //TODO: implement
62: return null;
63: }
64:
65: }
|