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