Deletes the selected text from the text area and places it into the clipboard. If no selection is made, the whole line with caret will be selectd.
()
| 1736 | * If no selection is made, the whole line with caret will be selectd. |
| 1737 | */ |
| 1738 | public void cut() { |
| 1739 | if (editable) { |
| 1740 | copy(); |
| 1741 | setSelectedText(""); |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | |
| 1746 | /** |
no test coverage detected