Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dataFile / src / org / gvsig / fmap / data / feature / file / shp / SHPDataExplorerParameters.java @ 24250

History | View | Annotate | Download (404 Bytes)

1
package org.gvsig.fmap.data.feature.file.shp;
2

    
3
import org.gvsig.fmap.data.feature.file.FileExplorerParameters;
4

    
5
public class SHPDataExplorerParameters extends FileExplorerParameters {
6
        public String getDataExplorerName() {
7
                return SHPDataExplorer.DATASOURCE_NAME;
8
        }
9

    
10
        public String getDescription() {
11
                return "SHP Files";
12
        }
13

    
14
        public String getDataStoreName() {
15
                return SHPStore.DATASTORE_NAME;
16
        }
17
}