Revision 540 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/RasterDriver.java

View differences:

RasterDriver.java
6 6
import java.io.IOException;
7 7

  
8 8
public interface RasterDriver {
9
    void open(File f) throws IOException;
10

  
11
    void initialize() throws IOException;
12

  
13
    void close() throws IOException;
9 14
    /**
10 15
     * Obtiene el n?mero de bandas del raster 
11 16
     */
......
61 66
     * Obtiene una muestra el pixel que se pasa como par?metro en la banda que se pasa como par?metro 
62 67
     */
63 68
    double getDataAsDouble(int x, int y, int band);
64

  
65
    void open(File f) throws IOException;
66

  
67
    void initialize() throws IOException;
68

  
69
    void close() throws IOException;
70 69
}

Also available in: Unified diff