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