with them we can replace ``` val shapeProperty by ...
# javafx
h
with them we can replace
Copy code
val shapeProperty by lazy { SimpleObjectProperty<Shape>() }
var shape: Shape
    get() = shapeProperty.get()
    set(value) = shapeProperty.set(value)
with
Copy code
val shapeProperty by lazy { SimpleObjectProperty<Shape>() }
var shape by property(shapeProperty)