SimpleDoubleProperty
open class SimpleDoubleProperty(initialValue: Double, bean: Any? = null, beanName: String? = null) : SimpleProperty<Double> , DoubleProperty
Boilerplate which avoids having to use generics. Instead of SimpleProperty<Double>
, we can use SimpleDoubleProperty
.