Interface PropertyListener<T>

Type Parameters:
T - the class of the value of the Property listened to

public interface PropertyListener<T>
The listener interface for receiving Property change events.
Since:
3.2.0
Author:
Joel Uckelman
  • Method Summary

    Modifier and Type
    Method
    Description
    <U extends T>
    void
    propertyChanged​(Object src, Property<U> prop, U oldVal, U newVal)
    Invoked when a Property change occurs.
  • Method Details

    • propertyChanged

      <U extends T> void propertyChanged(Object src, Property<U> prop, U oldVal, U newVal)
      Invoked when a Property change occurs.
      Parameters:
      src - the source of the change
      prop - the changed Property
      oldVal - the old value of the Property
      newVal - the new value of the Property