Interface TableListener

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TableListener
When registered as a listener on a Table, a TableListener is notified when the data in a table has been updated.
Author:
AO Industries, Inc.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    tableUpdated(Table<?> table)
    Invoked when a Table is updated.
  • Method Details

    • tableUpdated

      void tableUpdated(Table<?> table)
      Invoked when a Table is updated.