MutableListSpinButtonModel

Constructors

Link copied to clipboard
constructor(values: List<T> = emptyList())

Properties

Link copied to clipboard
open override var value: T

Currently selected value of the model.

Link copied to clipboard
open override val values: ObservableList<T>

Inherited properties

Link copied to clipboard

Notifies of changes to the current value.

Link copied to clipboard
Link copied to clipboard
open override val hasNext: Boolean

true if a call to next will move value forward.

Link copied to clipboard
open override val hasPrevious: Boolean

true if a call to next will move value backward.

Link copied to clipboard
protected var index: Int

Inherited functions

Link copied to clipboard
open override fun next()

Advances the model's value to the next item if it hasNext.

Link copied to clipboard
open override fun previous()

Advances the model's value to the previous item if it hasNext.