SimpleBooleanProperty

open class SimpleBooleanProperty(initialValue: Boolean, bean: Any? = null, beanName: String? = null) : SimpleProperty<Boolean> , BooleanProperty

Boilerplate which avoids having to use generics. Instead of SimpleProperty<Boolean>, we can use SimpleBooleanProperty.

Constructors

Link copied to clipboard
constructor(initialValue: Boolean, bean: Any? = null, beanName: String? = null)