Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / drivers / dgn / DGNDriver.java @ 307

History | View | Annotate | Download (1.66 KB)

1
package com.iver.cit.gvsig.fmap.drivers.dgn;
2

    
3
import java.awt.geom.Rectangle2D;
4
import java.io.File;
5
import java.io.IOException;
6

    
7
import com.iver.cit.gvsig.fmap.core.IGeometry;
8
import com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver;
9
import com.iver.cit.gvsig.fmap.layers.FRecordset;
10

    
11

    
12
/**
13
 * DOCUMENT ME!
14
 *
15
 * @author Vicente Caballero Navarro
16
 */
17
public class DGNDriver implements VectorialFileDriver {
18
    /**
19
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#open(java.io.File)
20
     */
21
    public void open(File f) throws IOException {
22
    }
23

    
24
    /**
25
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#close()
26
     */
27
    public void close() throws IOException {
28
    }
29

    
30
    /**
31
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#getShape(int)
32
     */
33
    public IGeometry getShape(int index) throws IOException {
34
        return null;
35
    }
36

    
37
    /**
38
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#getShapeCount()
39
     */
40
    public int getShapeCount() throws IOException {
41
        return 0;
42
    }
43

    
44
    /**
45
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#getFullExtent()
46
     */
47
    public Rectangle2D getFullExtent() throws IOException {
48
        return null;
49
    }
50

    
51
    /**
52
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialFileDriver#initialize()
53
     */
54
    public void initialize() throws IOException {
55
    }
56

    
57
    /**
58
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialDriver#getShapeType()
59
     */
60
    public int getShapeType() {
61
        return 0;
62
    }
63

    
64
    /**
65
     * @see com.iver.cit.gvsig.fmap.drivers.VectorialDriver#getRecordset()
66
     */
67
    public FRecordset getRecordset() {
68
        return null;
69
    }
70
}