Interface ListChangeListener<E>

Type Parameters:
E - the type of elements in the list

public interface ListChangeListener<E>
A listener that is called whenever an ObservableList changes.
Since:
1.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onChanged(Change<? extends E> change)
    Called whenever the list changes.
  • Method Details

    • onChanged

      void onChanged(Change<? extends E> change)
      Called whenever the list changes.
      Parameters:
      change - the change
      Since:
      1.0.0