Interface JImageFeatureLayerListener

All Known Implementing Classes:
JImageCanvas

public interface JImageFeatureLayerListener
A listener that enables to monitor image feature layer that can be displayed within a JImageCanvas.
Version:
1.0.0
Author:
Julien Seinturier - IVM Technologies - http://www.seinturier.fr
  • Method Details

    • onImageFeatureAdded

      void onImageFeatureAdded(JImageFeatureLayer layer, JImageFeature feature)
      A callback method that is triggered when a feature has been added to the listened layer.
      Parameters:
      layer - the layer that holds the event
      feature - the feature that has been added
    • onImageFeatureRemoved

      void onImageFeatureRemoved(JImageFeatureLayer layer, JImageFeature feature)
      A callback method that is triggered when a feature has been removed from the listened layer.
      Parameters:
      layer - the layer that holds the event
      feature - the feature that has been removed
    • onImageFeatureModified

      void onImageFeatureModified(JImageFeatureLayer layer, JImageFeature feature)
      A callback method that is triggered when a feature has been modified from the listened layer.
      Parameters:
      layer - the layer that holds the event
      feature - the feature that has been removed
    • onImageFeaturesAdded

      void onImageFeaturesAdded(JImageFeatureLayer layer, Collection<JImageFeature> features)
      A callback method that is triggered when a collection of feature has been added to the listened layer.
      Parameters:
      layer - the layer that holds the event
      features - the collection of feature that have been added
    • onImageFeaturesRemoved

      void onImageFeaturesRemoved(JImageFeatureLayer layer, Collection<JImageFeature> features)
      A callback method that is triggered when a collection of feature has been removed from the listened layer.
      Parameters:
      layer - the layer that holds the event
      features - the collection of feature that have been removed
    • onImageFeatureModified

      void onImageFeatureModified(JImageFeatureLayer layer, Collection<JImageFeature> features)
      A callback method that is triggered when a collection of feature has been modified from the listened layer.
      Parameters:
      layer - the layer that holds the event
      features - the collection of feature that has been removed