Is it possible to change the application icon using JavaFX, or does it have to be done using Swing?
You can easily put icon to your application using this code line
stage.getIcons().add(new Image("image path") );