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