Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / drivers / VectorialFileDriver.java @ 214

History | View | Annotate | Download (551 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap.drivers;
4

    
5
import java.awt.geom.Rectangle2D;
6
import java.io.File;
7
import java.io.IOException;
8

    
9
import com.iver.cit.gvsig.fmap.core.FGeometry;
10
public interface VectorialFileDriver extends VectorialDriver {
11
    void open(File f) throws IOException;
12

    
13
    void close() throws IOException;
14

    
15
    FGeometry getShape(int index) throws IOException;
16

    
17
    int getShapeCount() throws IOException;
18
    
19
    Rectangle2D getFullExtent() throws IOException;
20
    
21
    void initialize() throws IOException;
22
}