SimpleTableModel
A simple implementation of TableModel.
| Module | require("gui") | 
| Type | Class | 
| Inherits | TableModel | 
There is no need to call Notify methods when using SimpleTableModel.
Note that all data are stored as primary types, it is not possible to store
a native object (for example Images) in table model.
Class methods
create(columns)
Create a SimpleTableModel with fixed columns number.
Parameters
- Integercolumns
Return
SimpleTableModelMethods
addRow(row)
Add a row.
The length of row should not be smaller than columns number.
Parameters
- Arrayrow
removeRowAt(index)
Remove the row at index.
Parameters
- Integerindex