Statistics
| Revision:

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

History | View | Annotate | Download (583 Bytes)

1
package org.gvsig.fmap.data;
2

    
3
import java.util.Collection;
4

    
5
import org.gvsig.tools.observer.Observer;
6

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

    
20
        
21
        public boolean isFromStore(DataStore store);
22

    
23
}