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 @ 42775

History | View | Annotate | Download (506 Bytes)

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

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

    
7
public interface SimpleReader extends Closeable {
8

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

    
11
    public int getColumnsCount() throws IOException ;
12
            
13
    public List<String> read() throws IOException;
14

    
15
    @Override
16
    public void close() throws IOException;
17

    
18
    public List<String> skip(int lines) throws IOException;
19
    
20
    public int getLine();
21
}