Revision 44023 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/feature/FeatureStore.java

View differences:

FeatureStore.java
27 27
import java.util.List;
28 28

  
29 29
import org.cresques.cts.IProjection;
30
import org.gvsig.expressionevaluator.Expression;
30 31

  
31 32
import org.gvsig.fmap.dal.DataServerExplorer;
32 33
import org.gvsig.fmap.dal.DataStore;
......
211 212

  
212 213
    FeatureSet getFeatureSet(String filter, String sortBy, boolean asc) throws DataException;
213 214

  
215
    FeatureSet getFeatureSet(Expression filter) throws DataException;
216

  
217
    FeatureSet getFeatureSet(Expression filter, String sortBy) throws DataException;
218

  
219
    FeatureSet getFeatureSet(Expression filter, String sortBy, boolean asc) throws DataException;
214 220
    /**
215 221
     * Returns a subset of features taking into account the properties and
216 222
     * restrictions of the FeatureQuery.
......
285 291

  
286 292
    public List<Feature> getFeatures(String filter, String sortBy, boolean asc);
287 293

  
294
    public List<Feature> getFeatures(Expression filter);
295

  
296
    public List<Feature> getFeatures(Expression filter, String sortBy);
297

  
298
    public List<Feature> getFeatures(Expression filter, String sortBy, boolean asc);
299

  
288 300
    public Feature findFirst(String filter) throws DataException;
289 301

  
290 302
    public Feature findFirst(String filter, String sortBy) throws DataException;
291 303

  
292 304
    public Feature findFirst(String filter, String sortBy, boolean asc) throws DataException;
293 305

  
306
    public Feature findFirst(Expression filter) throws DataException;
307

  
308
    public Feature findFirst(Expression filter, String sortBy) throws DataException;
309

  
310
    public Feature findFirst(Expression filter, String sortBy, boolean asc) throws DataException;
311

  
294 312
    /**
295 313
     * Returns the feature given its reference.
296 314
     *

Also available in: Unified diff