Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / layers / FLyrMemory.java @ 214

History | View | Annotate | Download (1.57 KB)

1
/* Generated by Together */
2

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

    
5
import java.awt.geom.Rectangle2D;
6

    
7
import com.iver.cit.gvsig.fmap.core.FGeometry;
8
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
9
import com.iver.cit.gvsig.fmap.rendering.indexes.IndexNotExistsException;
10

    
11
/**
12
 * Clase que hace una pasada leyendo todos los shapes y almacenandolos en la memoria
13
 */
14
public class FLyrMemory extends VectorialAdapter {
15
    /**
16
     * Se guarda la referencia al driver y se guarda en memoria las features de dicho driver 
17
     */
18
    public void setSource(VectorialAdapter v) {
19
    }
20

    
21
    private VectorialAdapter source;
22

    
23
        /**
24
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#start()
25
         */
26
        public void start() throws DriverIOException {
27
        }
28

    
29
        /**
30
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#stop()
31
         */
32
        public void stop() throws DriverIOException {
33
        }
34

    
35
        /**
36
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#getShape(int)
37
         */
38
        public FGeometry getShape(int index) throws DriverIOException {
39
                return null;
40
        }
41

    
42
        /**
43
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#getShapeCount()
44
         */
45
        public int getShapeCount() throws DriverIOException {
46
                return 0;
47
        }
48

    
49
        /**
50
         * @see com.iver.cit.gvsig.fmap.layers.ReadableVectorial#getFullExtent()
51
         */
52
        public Rectangle2D getFullExtent() throws DriverIOException {
53
                return null;
54
        }
55

    
56
        /**
57
         * @see com.iver.cit.gvsig.fmap.rendering.indexes.Index#getRecordIndexes(java.awt.geom.Rectangle2D)
58
         */
59
        public int[] getRecordIndexes(Rectangle2D rect) throws DriverIOException, IndexNotExistsException {
60
                return null;
61
        }
62
}