Statistics
| Revision:

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

History | View | Annotate | Download (601 Bytes)

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

    
6
import java.io.File;
7
import java.io.FileInputStream;
8
import java.io.FileOutputStream;
9

    
10
import java.nio.ByteBuffer;
11
import java.nio.channels.FileChannel;
12

    
13

    
14
/**
15
 * DOCUMENT ME!
16
 *
17
 * @author Fernando Gonz?lez Cort?s
18
 */
19
public abstract class DiskIndexSet {
20
        protected File file;
21
        protected FileInputStream fis;
22
        protected FileOutputStream fos;
23
        protected FileChannel outputChannel;
24
        protected FileChannel inputChannel;
25
        protected ByteBuffer buffer = ByteBuffer.allocate(8);
26
        protected byte[] writeBuffer = new byte[8];
27
}