Statistics
| Revision:

root / trunk / libraries / libGDBMS / src / main / java / com / hardcode / gdbms / driver / shapefile / FMapShapefileDriver.java @ 10627

History | View | Annotate | Download (2.41 KB)

1
/*
2
 * Created on 30-ago-2005
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, 
21
USA.
22
 *
23
 * For more information, contact:
24
 *
25
 *  Generalitat Valenciana
26
 *   Conselleria d'Infraestructures i Transport
27
 *   Av. Blasco Ib??ez, 50
28
 *   46010 VALENCIA
29
 *   SPAIN
30
 *
31
 *      +34 963862235
32
 *   gvsig@gva.es
33
 *      www.gvsig.gva.es
34
 *
35
 *    or
36
 *
37
 *   IVER T.I. S.A
38
 *   Salamanca 50
39
 *   46005 Valencia
40
 *   Spain
41
 *
42
 *   +34 963163400
43
 *   dac@iver.es
44
 */
45
package com.hardcode.gdbms.driver.shapefile;
46

    
47
import java.io.File;
48

    
49
import com.hardcode.gdbms.driver.exceptions.OpenDriverException;
50
import com.hardcode.gdbms.engine.data.DataSourceFactory;
51
import com.hardcode.gdbms.engine.data.driver.SpatialFileDriver;
52
import com.hardcode.gdbms.engine.spatial.fmap.AbstractFMapFileDriver;
53
import com.iver.cit.gvsig.fmap.drivers.shp.IndexedShpDriver;
54
import com.iver.cit.gvsig.fmap.layers.VectorialFileAdapter;
55

    
56

    
57
public class FMapShapefileDriver extends AbstractFMapFileDriver implements SpatialFileDriver {
58

    
59
        /**
60
         * @see com.hardcode.gdbms.engine.data.driver.FileDriver#open(java.io.File)
61
         */
62
        public void open(File file) throws OpenDriverException {
63
                VectorialFileAdapter adapter = new VectorialFileAdapter(file);
64
                adapter.setDriver(new IndexedShpDriver());
65
                super.open(adapter);
66
        }
67

    
68
        /**
69
         * @see com.hardcode.gdbms.engine.data.driver.FileDriver#fileAccepted(java.io.File)
70
         */
71
        public boolean fileAccepted(File f) {
72
                return f.getName().toUpperCase().endsWith(".SHP");
73
        }
74

    
75
        /**
76
         * @see com.hardcode.driverManager.Driver#getName()
77
         */
78
        public String getName() {
79
                return "FMap ShapeFile Driver";
80
        }
81

    
82
    public void setDataSourceFactory(DataSourceFactory dsf) {
83
    }
84
}