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