()
| 299 | |
| 300 | |
| 301 | private void cut() { |
| 302 | if (copy()) { |
| 303 | int start = textArea.getSelectionStart(); |
| 304 | int end = textArea.getSelectionEnd(); |
| 305 | textArea.replaceRange("", start, end); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | private void paste() { |
| 310 | String s; |
no test coverage detected