Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / DataCollection.java @ 23772

History | View | Annotate | Download (536 Bytes)

1
package org.gvsig.fmap.data;
2

    
3
import org.gvsig.tools.visitor.Visitable;
4

    
5
/**
6
 * <p> Interface that extends java.util.Collection. Represents 
7
 * a group of data elements (similar Recordset of JDBC). It`s used 
8
 * in a generic way as a collection of elements, regardless of that`s
9
 * the result of a data consult, a selection or a collection of 
10
 * blocked elements.</p>
11
 * 
12
 * @author 
13
 *
14
 */
15
public interface DataCollection extends Visitable {
16
        public void dispose();
17
        public boolean isFromStore(DataStore store);
18

    
19
}