Statistics
| Revision:

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

History | View | Annotate | Download (611 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal;
2 19399 vcaballero
3 23754 jjdelcerro
import org.gvsig.tools.visitor.Visitable;
4 19399 vcaballero
5 23327 vacevedo
/**
6 24394 jiyarza
 * <p> Interface that represents a generic set of data. It may proceed either from a data
7 24393 jiyarza
 * query, a user selection or a collection of locked elements.</p>
8 23327 vacevedo
 */
9 23842 jjdelcerro
public interface DataSet extends Visitable {
10 24393 jiyarza
11
        /**
12
         * Frees this DataSet resources
13
         */
14 23754 jjdelcerro
        public void dispose();
15 24393 jiyarza
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 23754 jjdelcerro
        public boolean isFromStore(DataStore store);
23 22353 jmvivo
24 19399 vcaballero
}