Statistics
| Revision:

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

History | View | Annotate | Download (2.39 KB)

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

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

    
6
import org.cresques.cts.IProjection;
7
import org.gvsig.data.IDataCollection;
8
import org.gvsig.data.vectorial.AbstractFeatureStore;
9
import org.gvsig.data.vectorial.IFeature;
10
import org.gvsig.data.vectorial.IFeatureCollection;
11
import org.gvsig.data.vectorial.IFeatureID;
12
import org.gvsig.data.vectorial.IFeatureType;
13

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

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

    
20
        }
21

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

    
25
        }
26

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

    
30
        }
31

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

    
35
        }
36

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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