(WindowEvent e)
| 190 | setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); |
| 191 | addWindowListener(new WindowAdapter() { |
| 192 | public void windowClosing(WindowEvent e) { |
| 193 | handleClose(); |
| 194 | } |
| 195 | }); |
| 196 | Toolkit.registerWindowCloseKeys(getRootPane(), actionEvent -> handleClose()); |
| 197 | Toolkit.setIcon(this); |
nothing calls this directly
no test coverage detected