01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.wfs.xml.v1_0_0;
06:
07: import net.opengis.wfs.WfsFactory;
08: import org.geotools.xml.AbstractComplexBinding;
09: import org.geotools.xml.ElementInstance;
10: import org.geotools.xml.Node;
11: import javax.xml.namespace.QName;
12:
13: /**
14: * Binding object for the element http://www.opengis.net/wfs:GetFeature.
15: *
16: * <p>
17: * <pre>
18: * <code>
19: * <xsd:element name="GetFeature" type="wfs:GetFeatureType">
20: * <xsd:annotation> <xsd:documentation> The
21: * GetFeature element is used to request that a Web Feature
22: * Service return feature instances of one or more feature
23: * types. </xsd:documentation> </xsd:annotation> </xsd:element>
24: *
25: * </code>
26: * </pre>
27: * </p>
28: *
29: * @generated
30: */
31: public class GetFeatureBinding extends AbstractComplexBinding {
32: WfsFactory wfsfactory;
33:
34: public GetFeatureBinding(WfsFactory wfsfactory) {
35: this .wfsfactory = wfsfactory;
36: }
37:
38: /**
39: * @generated
40: */
41: public QName getTarget() {
42: return WFS.GETFEATURE;
43: }
44:
45: /**
46: * <!-- begin-user-doc -->
47: * <!-- end-user-doc -->
48: *
49: * @generated modifiable
50: */
51: public Class getType() {
52: return null;
53: }
54:
55: /**
56: * <!-- begin-user-doc -->
57: * <!-- end-user-doc -->
58: *
59: * @generated modifiable
60: */
61: public Object parse(ElementInstance instance, Node node,
62: Object value) throws Exception {
63: //TODO: implement
64: return null;
65: }
66: }
|