SimpleStylableProperty
abstract class SimpleStylableProperty<V>(initialValue: V, bean: Any? = null, beanName: String? = null) : SimpleProperty<V> , StylableProperty<V>
A SimpleProperty, which is also a StylableProperty. This is the only concrete implementation of StylableProperty used within Glok, but you are free to create other implementations if you need to.
Inheritors
Properties
Functions
Link copied to clipboard
open fun addBindChangeListener(lambda: (ObservableValue<V>, V, V) -> Unit): ChangeListener<V, ObservableValue<V>>
Link copied to clipboard
Link copied to clipboard
open fun addChangeListener(lambda: (ObservableValue<V>, V, V) -> Unit): ChangeListener<V, ObservableValue<V>>
Link copied to clipboard
Link copied to clipboard
open fun addWeakChangeListener(lambda: (ObservableValue<V>, V, V) -> Unit): ChangeListener<V, ObservableValue<V>>
Link copied to clipboard
Link copied to clipboard
open override fun <B> bidirectionalBind(other: Property<B>, converter: Converter<V, B>): BidirectionalBind
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
A type UNSAFE way to set the value by te Theme. If newValue is the wrong type, an ClassCastException will be thrown.
Link copied to clipboard