ReadOnlyStringPropertyWrapper
class ReadOnlyStringPropertyWrapper(wraps: StringProperty) : ReadOnlyPropertyWrapper<String, Property<String>> , ReadOnlyStringProperty
Never use this class directly. Use StringProperty.asReadOnly to obtain a read-only version of a mutable StringProperty.
Boilerplate which avoids having to use generic. Instead of ReadOnlyPropertyWrapper<String, Property<String>>
, use ReadOnlyStringPropertyWrapper
.