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:FeatureCollection.
15: *
16: * <p>
17: * <pre>
18: * <code>
19: * <xsd:element name="FeatureCollection"
20: * substitutionGroup="gml:_FeatureCollection"
21: * type="wfs:FeatureCollectionType"> <xsd:annotation>
22: * <xsd:documentation> This element is a container
23: * for the response to a GetFeature or
24: * GetFeatureWithLock (WFS-transaction.xsd) request.
25: * </xsd:documentation> </xsd:annotation> </xsd:element>
26: *
27: * </code>
28: * </pre>
29: * </p>
30: *
31: * @generated
32: */
33: public class FeatureCollectionBinding extends AbstractComplexBinding {
34: WfsFactory wfsfactory;
35:
36: public FeatureCollectionBinding(WfsFactory wfsfactory) {
37: this .wfsfactory = wfsfactory;
38: }
39:
40: /**
41: * @generated
42: */
43: public QName getTarget() {
44: return WFS.FEATURECOLLECTION;
45: }
46:
47: /**
48: * <!-- begin-user-doc -->
49: * <!-- end-user-doc -->
50: *
51: * @generated modifiable
52: */
53: public Class getType() {
54: return null;
55: }
56:
57: /**
58: * <!-- begin-user-doc -->
59: * <!-- end-user-doc -->
60: *
61: * @generated modifiable
62: */
63: public Object parse(ElementInstance instance, Node node,
64: Object value) throws Exception {
65: //TODO: implement
66: return null;
67: }
68: }
|