data class EditableDatum<T>
An entry in the table.
Associates a datum with a boolean that indicates whether the datum is active. The datum can be "edited" by changing its reference to another datum.
EditableDatum(active: Boolean, datum: T)
An entry in the table. |
var active: Boolean
whether the entry is active |
|
var datum: T
a reference to a piece of data |