Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / engine / data / indexes / MemoryIndexSet.java @ 466

History | View | Annotate | Download (467 Bytes)

1
/*
2
 * Created on 23-oct-2004
3
 */
4
package com.hardcode.gdbms.engine.data.indexes;
5

    
6

    
7
/**
8
 * @author Fernando Gonz?lez Cort?s
9
 */
10
public abstract class MemoryIndexSet {
11
    protected long[] indexes;
12
        /**
13
         * @see com.hardcode.gdbms.engine.data.indexes.VariableIndexSet#getIndex(long)
14
         */
15
        public long getIndex(long nth) {
16
            return indexes[(int) nth];
17
        }
18
        /**
19
         * @see com.hardcode.gdbms.engine.data.indexes.VariableIndexSet#close()
20
         */
21
        public void close() {
22
        }
23

    
24
}