Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / DataSet.java @ 24496

History | View | Annotate | Download (611 Bytes)

1
package org.gvsig.fmap.dal;
2

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

    
5
/**
6
 * <p> Interface that represents a generic set of data. It may proceed either from a data 
7
 * query, a user selection or a collection of locked elements.</p>
8
 */
9
public interface DataSet extends Visitable {
10
        
11
        /**
12
         * Frees this DataSet resources
13
         */
14
        public void dispose();
15
        
16
        /**
17
         * Indicates whether this DataSet belongs to a specific store
18
         * @param store 
19
         *                         a DataStore   
20
         * @return true if this belongs to the given DataStore, false if not.
21
         */
22
        public boolean isFromStore(DataStore store);
23

    
24
}