Deletes the selected text from the text area and places it into the clipboard.
()
| 1566 | * into the clipboard. |
| 1567 | */ |
| 1568 | public void cut() { |
| 1569 | if (editable) { |
| 1570 | copy(); |
| 1571 | setSelectedText(""); |
| 1572 | } |
| 1573 | } |
| 1574 | |
| 1575 | |
| 1576 | /** |
no test coverage detected