Interface MCRProcessableCollectionListener

All Superinterfaces:
EventListener

public interface MCRProcessableCollectionListener extends EventListener
Base event listener interface for adding/removing MCRProcessable of MCRProcessableCollection.
Author:
Matthias Eichner
  • Method Details

    • onAdd

      void onAdd(MCRProcessableCollection source, MCRProcessable processable)
      Fired when a processable was added.
      Parameters:
      source - the source collection
      processable - the processable added
    • onRemove

      void onRemove(MCRProcessableCollection source, MCRProcessable processable)
      Fired when a processable was removed.
      Parameters:
      source - the source collection
      processable - the processable removed
    • onPropertyChange

      void onPropertyChange(MCRProcessableCollection source, String name, Object oldValue, Object newValue)
      Fired when a property changed.
      Parameters:
      source - the source collection
      name - the name of the property
      oldValue - the old value
      newValue - the new value