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