Package com.mckoi.database
Interface DataTableListener
-
interface DataTableListener
A DataTableListener is notified of all modifications to the raw entries of the data table. This listener can be used for detecting changes in VIEWs, for triggers or for caching of common queries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
rowAdded(DataTable table, int row_index)
Called after a row entry in the table is added.void
rowDeleted(DataTable table, int row_index)
Called before a row entry in the table is deleted.
-