JavaFX is an open source framework for creating client apps and is comprised of a number of libraries.
Application an abstract class with a start() methodStage which is an object that holds Scenesstage.show() in the start method to display the stuff added to the stage.getChildren().add(something) Then pass the VBox to a Scene constructor with dimensionsStage.SetScene(sceneobject)