Uses of Class
com.mckoi.database.RowData
-
Packages that use RowData Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of RowData in com.mckoi.database
Methods in com.mckoi.database that return RowData Modifier and Type Method Description RowDataDataTable. createRowDataObject(QueryContext context)Generates an empty RowData object for 'addRow'ing into the Table.RowDataTableModificationEvent. getRowData()Returns the RowData object that represents the change that is being made to the table either by an INSERT or UPDATE.Methods in com.mckoi.database with parameters of type RowData Modifier and Type Method Description voidDataTable. add(RowData row_data)Adds a given 'RowData' object to the table.voidDataTable. add(RowData[] row_data_arr)Adds an array of 'RowData' objects to the table.intMutableTableDataSource. addRow(RowData row_data)Adds a row to the source.intMutableTableDataSource. updateRow(int row_index, RowData row_data)Updates a row in the source.
-