Interface ObservableMapListener


  • public interface ObservableMapListener
    Notification types from an ObservableMap.
    Author:
    sky
    • Method Detail

      • mapKeyValueChanged

        void mapKeyValueChanged​(ObservableMap map,
                                Object key,
                                Object lastValue)
        Notification that the value of an existing key has changed.
        Parameters:
        map - the ObservableMap that changed
        key - the key
        lastValue - the previous value
      • mapKeyAdded

        void mapKeyAdded​(ObservableMap map,
                         Object key)
        Notification that a key has been added.
        Parameters:
        map - the ObservableMap that changed
        key - the key
      • mapKeyRemoved

        void mapKeyRemoved​(ObservableMap map,
                           Object key,
                           Object value)
        Notification that a key has been removed
        Parameters:
        map - the ObservableMap that changed
        key - the key
        value - value for key before key was removed