(WindowEvent e)
| 283 | // textField is selected every time the window is focused |
| 284 | addWindowFocusListener(new WindowAdapter() { |
| 285 | @Override |
| 286 | public void windowGainedFocus(WindowEvent e) { |
| 287 | textField.requestFocusInWindow(); |
| 288 | } |
| 289 | }); |
| 290 | |
| 291 | // Add cut/copy/paste contextual menu to the text input field. |
nothing calls this directly
no test coverage detected