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 / feature / spi / simpleprovider / SimpleSequentialReader.java @ 44271

History | View | Annotate | Download (974 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.fmap.dal.feature.spi.simpleprovider;
7

    
8
import java.io.File;
9
import java.util.List;
10
import java.util.Map;
11
import org.gvsig.fmap.dal.feature.spi.simpleprovider.AutomaticDetectionOfTypes.Rows;
12

    
13
/**
14
 *
15
 * @author jjdelcerro
16
 */
17
public interface SimpleSequentialReader extends Rows {
18

    
19
    public SimpleSequentialReaderFactory getFactory();
20
    
21
    public File getFile();
22
    
23
    public List<String> getFieldNames();
24

    
25
    @Override
26
    public List<Object> read();
27
    
28
    public void rewind();
29
    
30
    public void close();
31

    
32
    public String getName();
33
    
34
    public String getLabel();
35
    
36
    public String getDescription();
37
    
38
    public Map<String,String> getTags();
39

    
40
    public List<SimpleSequentialReader> getChildren();
41
    
42
    public long getRowCount();
43
    
44
}