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.