So, question. Why are JavaFX properties implemente...
# tornadofx
r
So, question. Why are JavaFX properties implemented the way they are in TornadoFX instead of, for example, adding
getValue()
and
setValue()
extension functions to
Property
and then using something like
Copy code
val nameProperty = SimpleStringProperty()
val name by nameProperty
?