1Javafx Pane
2Pane class is a part of JavaFX. Pane class acts as a base class of
3all layout panes. Basically, it fulfills the need to expose the
4children list as public so that users of the subclass can freely
5add/remove children. Pane class inherits Region class
6
7Pane = new Pane(value="children");
8