(ActionEvent actionEvent)
| 103 | new KeyFrame(Duration.seconds(0), |
| 104 | new EventHandler<ActionEvent>() { |
| 105 | @Override public void handle(ActionEvent actionEvent) { |
| 106 | Calendar time = Calendar.getInstance(); |
| 107 | SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm"); |
| 108 | clockLabel.setText(" " + simpleDateFormat.format(time.getTime()) + " "); |
| 109 | } |
| 110 | } |
| 111 | ), |
| 112 | new KeyFrame(Duration.seconds(1)) |