hastebrot
01/31/2016, 6:02 AMval shapeProperty by lazy { SimpleObjectProperty<Shape>() }
var shape: Shape
get() = shapeProperty.get()
set(value) = shapeProperty.set(value)
with
val shapeProperty by lazy { SimpleObjectProperty<Shape>() }
var shape by property(shapeProperty)