Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.bsq / src / main / java / org / gvsig / fmap / dal / fileutils / AuxFile.java @ 43867

History | View | Annotate | Download (302 Bytes)

1

    
2
package org.gvsig.fmap.dal.fileutils;
3

    
4
import java.io.File;
5
import java.io.IOException;
6

    
7

    
8
public interface AuxFile {
9
 
10
    public File getFile(File file);
11

    
12
    public File getFile();
13

    
14
    public void read(File file) throws IOException ;
15

    
16
    public void write(File file) throws IOException ;       
17
}