Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / rendering / indexes / FDiskIndex.java @ 305

History | View | Annotate | Download (983 Bytes)

1
/* Generated by Together */
2

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

    
5
import java.awt.geom.Rectangle2D;
6

    
7
import com.iver.cit.gvsig.fmap.core.IGeometry;
8
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
9

    
10
/**
11
 * Resuelve las peticiones de la interfaz Index accediendo siempre a disco
12
 */
13
public class FDiskIndex implements Index {
14
    /**
15
     * A?ade la geometria que se pasa como par?metro al ?ndice 
16
     */
17
    public void addIndex(IGeometry g, int index) {
18
    }
19

    
20
        /**
21
         * @see com.iver.cit.gvsig.fmap.rendering.indexes.Index#openIndexFile(java.lang.String)
22
         */
23
        public void openIndexFile(String file) {
24
        }
25

    
26
        /**
27
         * @see com.iver.cit.gvsig.fmap.rendering.indexes.Index#closeIndexFile()
28
         */
29
        public void closeIndexFile() {
30
        }
31

    
32
        /**
33
         * @see com.iver.cit.gvsig.fmap.rendering.indexes.Index#getRecordIndexes(java.awt.geom.Rectangle2D)
34
         */
35
        public int[] getRecordIndexes(Rectangle2D rect) throws DriverIOException, IndexNotExistsException {
36
                return null;
37
        }
38
}