Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libFMap / src-comp / org / gvsig / datasources / common / IRandomAccessFile.java @ 21606

History | View | Annotate | Download (179 Bytes)

1
package org.gvsig.datasources.common;
2

    
3
import java.io.IOException;
4

    
5
public interface IRandomAccessFile {
6

    
7
        IRandomFileChannel getChannel();
8

    
9
        void close() throws IOException ;
10

    
11
}