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