JavaFX Property Wrappers
Contents
JavaFX provides functionality to listen to changes of our primitive data types (int, boolean, etc). These are provided as Property classes, for example BooleanProperty and IntegerProperty.
These classes themselves are abstract (cannot be instantiated), but must instead be sub-classed - such as SimpleIntegerProperty and SimpleBooleanProperty.
| |
Listening for change
| |