ReadWriteProperty

interface ReadWriteProperty<in T, V> : ReadOnlyProperty<T, V>

Base interface that can be used for implementing property delegates of read-write properties.

This is provided only for convenience; you don't have to extend this interface as long as your property delegate has methods with the same signatures.

Parameters

T

the type of object which owns the delegated property.

V

the type of the property value.

Functions

getValue
Link copied to clipboard
abstract operator override fun getValue(thisRef: T, property: KProperty<*>): V

Returns the value of the property for the given object.

setValue
Link copied to clipboard
abstract operator fun setValue(thisRef: T, property: KProperty<*>, value: V)

Sets the value of the property for the given object.

Inheritors

ObservableProperty
Link copied to clipboard