(ActionEvent event)
| 310 | btn.setOnAction(new EventHandler<ActionEvent>() { |
| 311 | |
| 312 | @Override |
| 313 | public void handle(ActionEvent event) { |
| 314 | System.out.println( |
| 315 | "width: " + scene.getWidth() + " height: " + scene.getHeight()); |
| 316 | } |
| 317 | }); |
| 318 | |
| 319 | root.getChildren().add(btn); |
nothing calls this directly
no outgoing calls
no test coverage detected