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.lib / src / main / java / org / gvsig / fmap / dal / store / simplereader / simplereaders / SimpleReader.java @ 47655

History | View | Annotate | Download (597 Bytes)

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

    
3
import java.io.IOException;
4
import java.util.List;
5
import java.io.Closeable;
6
import org.gvsig.fmap.dal.store.simplereader.AutomaticDetectionOfTypes.Rows;
7

    
8
public interface SimpleReader extends Closeable, Rows {
9

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

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

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

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