Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.basicformats / src / main / java / org / gvsig / basicformats / FormatFile.java @ 45318

History | View | Annotate | Download (368 Bytes)

1

    
2
package org.gvsig.basicformats;
3

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

    
7

    
8
public interface FormatFile {
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

    
18
    public void writeQuietly(File file) throws IOException ;       
19
}