Package org.geotools.api.data
Interface FeatureListener
-
- All Superinterfaces:
EventListener
public interface FeatureListener extends EventListener
Interface to be implemented by all listeners of FeatureEvents.Event notification is based on p[roviding the Envelope of the modification (if known).
- Since:
- GeoTools 2.0
- Author:
- Jody Garnett, Refractions Research, Inc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
changed(FeatureEvent featureEvent)
Gets called when a FeatureEvent is fired.
-
-
-
Method Detail
-
changed
void changed(FeatureEvent featureEvent)
Gets called when a FeatureEvent is fired.Typically fired to signify that a change has occurred in the DataStore backing the FeatureSource.
- Parameters:
featureEvent
- The FeatureEvent being fired
-
-