SimpleMutableListModel
open class SimpleMutableListModel<T>(list: ObservableList<T>) : SimpleListModel<T> , MutableListModel<T> (source)
MutableListModel based directly on an ObservableList.
Inherited properties
Functions
Link copied to clipboard
Forces the model to notify listeners that index changed. This is useful when the model has mutable items that change their internal state in some way that observers need to know about. Such changes cannot be detected by the model directly, since it relies on reference comparisons to detect changes.
Link copied to clipboard
Removes values from the model.
Link copied to clipboard
Removes all values at the given indexes from the model.
Link copied to clipboard
Replaces all values in the model with new items.
Link copied to clipboard
Keeps only the items in the model that are contained within values.
Link copied to clipboard
Sorts the contents of the model descending.
Link copied to clipboard
Sorts the contents of the model ascending.
Link copied to clipboard
Sorts the contents of the model descending.