Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.csv / src / main / java / org / gvsig / fmap / dal / store / csv / simplereaders / SimpleReader.java @ 41617

History | View | Annotate | Download (350 Bytes)

1
package org.gvsig.fmap.dal.store.csv.simplereaders;
2

    
3
import java.io.IOException;
4
import java.util.List;
5

    
6
public interface SimpleReader {
7

    
8
    public String[] getHeader() throws IOException;
9

    
10
    public List<String> read() throws IOException;
11

    
12
    public void close() throws IOException;
13

    
14
    public List<String> skip(int lines) throws IOException;
15
}