/** * Draw stump of tree. * * @return Path representing Christmas tree stump. */ private Path buildStumpPath() { final Path path = new Path(); int coordX = LEFT_STUMP_X; int coordY = LEFT_STUMP_Y; ...
The javafx.application.Application class provides a framework for managing a JavaFX application. This application must include a class that extends Application, overriding various methods that the ...