Statistics
| Revision:

root / trunk / libraries / libDataSource / src / org / gvsig / data / datastores / gml / GMLDataStore.java @ 19440

History | View | Annotate | Download (2.42 KB)

1
package org.gvsig.data.datastores.gml;
2

    
3
import java.awt.geom.Rectangle2D;
4
import java.util.List;
5

    
6
import org.gvsig.data.IDataCollection;
7
import org.gvsig.data.vectorial.AbstractFeatureStore;
8
import org.gvsig.data.vectorial.IFeature;
9
import org.gvsig.data.vectorial.IFeatureID;
10
import org.gvsig.data.vectorial.IFeatureType;
11
import org.gvsig.metadata.IMetadata;
12

    
13
public class GMLDataStore extends AbstractFeatureStore {
14
        public static String DATASTORE_NAME = "GMLDataStore";
15

    
16
        public void open() {
17
                // TODO Apéndice de método generado automáticamente
18

    
19
        }
20

    
21
        public void close() {
22
                // TODO Apéndice de método generado automáticamente
23

    
24
        }
25

    
26
        public void dispose() {
27
                // TODO Apéndice de método generado automáticamente
28

    
29
        }
30

    
31
        public void commit() {
32
                // TODO Apéndice de método generado automáticamente
33

    
34
        }
35

    
36
        public IFeature getFeatureByID(IFeatureID id) {
37
                // TODO Apéndice de método generado automáticamente
38
                return null;
39
        }
40

    
41
        public IFeature getFeatureByPosition(long position) {
42
                // TODO Apéndice de método generado automáticamente
43
                return null;
44
        }
45

    
46
        public List getFeatureTypes() {
47
                // TODO Apéndice de método generado automáticamente
48
                return null;
49
        }
50

    
51
        public IDataCollection getDataCollection(IFeatureType type, String filter, String order) {
52
                // TODO Apéndice de método generado automáticamente
53
                return null;
54
        }
55

    
56
        public String getName() {
57
                // TODO Apéndice de método generado automáticamente
58
                return null;
59
        }
60

    
61
        public boolean isEditable() {
62
                // TODO Auto-generated method stub
63
                return false;
64
        }
65

    
66
        public Object getFullExtent() {
67
                // TODO Auto-generated method stub
68
                return null;
69
        }
70

    
71
        public IFeatureType getDefaultFeatureType() {
72
                // TODO Auto-generated method stub
73
                return null;
74
        }
75

    
76
        public Rectangle2D getFullExtent2D() {
77
                // TODO Auto-generated method stub
78
                return null;
79
        }
80

    
81
        public List getAllSRS() {
82
                // TODO Auto-generated method stub
83
                return null;
84
        }
85

    
86
        public String getDefaultSRS() {
87
                // TODO Auto-generated method stub
88
                return null;
89
        }
90

    
91
        public boolean isWithDefaultLegend() {
92
                return false;
93
        }
94

    
95
        public Object getDefaultLegend() {
96
                return null;
97
        }
98

    
99
        public Object getDefaultLabelingStrategy() {
100
                return null;
101
        }
102

    
103
        public boolean canAlterFeatureType() {
104
                // TODO Auto-generated method stub
105
                return false;
106
        }
107

    
108
        public IMetadata getMetadata() {
109
                // TODO Auto-generated method stub
110
                return null;
111
        }
112
}