Package com.luciad.models.features
Interface IFeatureQueryCallback
public interface IFeatureQueryCallback
A callback class that is called with the results of a query.
See IFeatureModel#query
.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
handleFeature
(Feature feature) Implement this method to handle a feature that is returned by theIFeatureModel#query
method.
-
Method Details
-
handleFeature
Implement this method to handle a feature that is returned by theIFeatureModel#query
method.- Parameters:
feature
- the feature to handle.- Returns:
- false to indicate that the query can stop.
-