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 / virtualrows / CSVList.java @ 47638

History | View | Annotate | Download (582 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.store.csv.virtualrows;
7

    
8
import java.io.Closeable;
9
import java.util.List;
10
import org.gvsig.tools.util.GetItemWithSize;
11
import org.gvsig.tools.util.GetItemWithSize64;
12

    
13
/**
14
 *
15
 * @author gvSIG Team
16
 */
17
public interface CSVList extends 
18
        List<List<String>>, 
19
        Closeable, 
20
        GetItemWithSize<List<String>>,
21
        GetItemWithSize64<List<String>> 
22
    {
23
}