Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / RasterFile.java @ 213

History | View | Annotate | Download (763 Bytes)

1
/* Generated by Together */
2

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

    
5
import java.awt.Graphics2D;
6
import java.awt.geom.Point2D;
7
import java.awt.geom.Rectangle2D;
8

    
9

    
10
public class RasterFile implements Raster {
11
    private FileRasterDriver driver;
12

    
13
        /**
14
         * @see com.iver.cit.gvsig.fmap.Raster#renderTo(java.awt.Graphics2D, java.awt.geom.Rectangle2D)
15
         */
16
        public void renderTo(Graphics2D g, Rectangle2D rectVisible) throws DriverIOException {
17
        }
18

    
19
        /**
20
         * @see com.iver.cit.gvsig.fmap.Raster#queryByPoint(java.awt.geom.Point2D, double)
21
         */
22
        public Record queryByPoint(Point2D p, double tolerancia) throws DriverIOException {
23
                return null;
24
        }
25

    
26
        /**
27
         * @see com.iver.cit.gvsig.fmap.Raster#selectByPoint()
28
         */
29
        public void selectByPoint() throws DriverIOException {
30
        }
31
}