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

History | View | Annotate | Download (1.05 KB)

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.StoresRepository;
12
import org.gvsig.fmap.dal.feature.spi.simpleprovider.AutomaticDetectionOfTypes.Rows;
13

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

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

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

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

    
41
    public List<SimpleSequentialReader> getChildren();
42
    
43
    public long getRowCount();
44
    
45
    public StoresRepository getStoresRepository();
46
    
47
}