Interface DataTableListener


public interface DataTableListener
Interface for handling data table events
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    recordAdded(DataTable table, GenericRecord genericRecord)
    Event indicating that a record has been added to a table.
    void
    recordRemoved(DataTable table, GenericRecord genericRecord)
    Event indicating that a record has been removed from a table.
  • Method Details

    • recordAdded

      void recordAdded(DataTable table, GenericRecord genericRecord)
      Event indicating that a record has been added to a table.
      Parameters:
      table - the table to which the record has been added
      genericRecord - the record added to the table
    • recordRemoved

      void recordRemoved(DataTable table, GenericRecord genericRecord)
      Event indicating that a record has been removed from a table.
      Parameters:
      table - the table from which the record has been removed
      genericRecord - the record removed from the table