Package xal.tools.data
Interface DataTableListener
public interface DataTableListener
Interface for handling data table events
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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
Event indicating that a record has been added to a table.- Parameters:
table
- the table to which the record has been addedgenericRecord
- the record added to the table
-
recordRemoved
Event indicating that a record has been removed from a table.- Parameters:
table
- the table from which the record has been removedgenericRecord
- the record removed from the table
-