ObservableProperty

abstract class ObservableProperty<V>(initialValue: V) : ReadWriteProperty<Any?, V> (source)

Implements the core logic of a property delegate for a read/write property that calls callback functions when changed.

Parameters

initialValue

the initial value of the property.

Constructors

Link copied to clipboard
fun <V> ObservableProperty(initialValue: V)

Functions

Link copied to clipboard
open operator override fun getValue(thisRef: Any?, property: KProperty<*>): V

Returns the value of the property for the given object.

Link copied to clipboard
open operator override fun setValue(    thisRef: Any?,     property: KProperty<*>,     value: V)

Sets the value of the property for the given object.