Accessor

interface Accessor<out V>(source)

Represents a property accessor, which is a get or set method declared alongside the property. See the Kotlin language documentation for more information.

Since Kotlin

1.0

Parameters

V

the type of the property, which it is an accessor of.

Inheritors

Properties

Link copied to clipboard
abstract val property: KProperty<V>

The property which this accessor is originated from.

Since Kotlin 1.0