javafx platform code example
Example 1: javaFX path
--module-path "${PATH_TO_FX}" --add-modules=javafx.controls,javafx.fxml,javafx.graphics
Example 2: pane javafx
Javafx Pane
Pane class is a part of JavaFX. Pane class acts as a base class of
all layout panes. Basically, it fulfills the need to expose the
children list as public so that users of the subclass can freely
add/remove children. Pane class inherits Region class
Pane = new Pane(value="children");