EditableDatum

data class EditableDatum<T>(active: Boolean, datum: 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.

Parameters

T

the type of datum

Constructors

EditableDatum
Link copied to clipboard
fun <T> EditableDatum(active: Boolean, datum: T)
the type of datum

Properties

active
Link copied to clipboard
var active: Boolean
whether the entry is active
datum
Link copied to clipboard
var datum: T
a reference to a piece of data

Sources

jvm source
Link copied to clipboard