Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / DataCollection.java @ 23754

History | View | Annotate | Download (611 Bytes)

1
package org.gvsig.fmap.data;
2

    
3
import java.util.Collection;
4

    
5
import org.gvsig.tools.observer.Observer;
6
import org.gvsig.tools.visitor.Visitable;
7

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

    
22
}