Interface BasicNotifierImpl.EObservableAdapterList.Listener

Enclosing interface:
BasicNotifierImpl.EObservableAdapterList

public static interface BasicNotifierImpl.EObservableAdapterList.Listener
An interface implemented by clients wishing to observe adapters being added and removed from an adapter lists.
Since:
2.6
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    added(Notifier notifier, Adapter adapter)
    Called when the given adapter is added to the given notifier.
    void
    removed(Notifier notifier, Adapter adapter)
    Called when the given adapter is remove from the given notifier.
  • Method Details

    • added

      void added(Notifier notifier, Adapter adapter)
      Called when the given adapter is added to the given notifier.
      Parameters:
      notifier - the notifier being adapted.
      adapter - the adapter being added to the notifier.
    • removed

      void removed(Notifier notifier, Adapter adapter)
      Called when the given adapter is remove from the given notifier.
      Parameters:
      notifier - the notifier that was being adapted.
      adapter - the adapter being removed from the notifier.