Run Listing 14.9, p. 550 (in zipped NB project for Chapter 14). You’ll need to download the image file us.gif and add it to your project OR use the URL that you find in the code. Take a screenshot of the window and paste it into your document. Which method did you use to display the flag? import javafx.appli cati on.Appl1cation: import javafx.scene.Scene: import javafx.scene.layout.HBox: import javafx.scene.layout.Pane: import javafx.geometry.Insets: import javafx.stage.Stage: import javafx.scene.image.Image: import javafx.scene.image.ImageView: public class Show image extends Application { @Override//Override the start method in the Application class public void start(Stage primaryStage) { //Create a pane to hold the image views Pane pane = new HBox(10): ane.setPadding(new Insets(exist, 5, 5, 5)): Image image = new Image(image/us.gif”):pane.getChiIdren().add(new ImageVi ew(image)): ImageView imageView2 = new ImageView(image): imageVi ew2.set Fi tHei ght(100): imageVi ew2.setFitwi dth(100): pane.getChi1dren().add(i mageView2): ImageView imageView3 = new ImageView(image): imageVi ew3.setRotate(90): pane.getChi1dren().add(imageVi ew3)://Create a scene and place it in the stage Scene scene = new Scene(pane): primaryStage.setTitle(Showlmage”);//Set the stage title primaryStage.setScene(scene);//Place the scene in the stage primaryStage.show();//Display the stage } }