Interface ObservableMap.MapChangeListener<K,V>

Type Parameters:
K - the key type
V - the value type
Enclosing class:
ObservableMap<K,V>

public static interface ObservableMap.MapChangeListener<K,V>
The listener interface for receiving map change events.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    added(K key, V value)
    Called when new entry is added.
    void
    changed(K key, V value)
    Called when entry has been changed.
    void
    removed(K key, V value)
    Called when entry has been removed.
  • Method Details

    • added

      void added(K key, V value)
      Called when new entry is added.
      Parameters:
      key - the key
      value - the value
    • changed

      void changed(K key, V value)
      Called when entry has been changed.
      Parameters:
      key - the key
      value - the value
    • removed

      void removed(K key, V value)
      Called when entry has been removed.
      Parameters:
      key - the key
      value - the value