In this chapter, you will learn:
What observable collections in JavaFX are
How to observe observable collections for invalidations and changes
How to use observable collections as properties
The examples of this chapter lie in the
com.jdojo.collections package
. In order for them to work, you must add a corresponding line to the
module-info.java file
:
...
opens com.jdojo.collections to javafx.graphics, javafx.base;
...
What Are Observable Collections?
Observable collections in ...