Places the selected text into the clipboard.
()
| 1577 | * Places the selected text into the clipboard. |
| 1578 | */ |
| 1579 | public void copy() { |
| 1580 | if (selectionStart != selectionEnd) { |
| 1581 | Clipboard clipboard = getToolkit().getSystemClipboard(); |
| 1582 | |
| 1583 | String selection = getSelectedText(); |
| 1584 | if (selection != null) { |
| 1585 | int repeatCount = inputHandler.getRepeatCount(); |
| 1586 | StringBuilder sb = new StringBuilder(); |
| 1587 | for(int i = 0; i < repeatCount; i++) |
| 1588 | sb.append(selection); |
| 1589 | |
| 1590 | clipboard.setContents(new StringSelection(sb.toString()), null); |
| 1591 | } |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | |
| 1596 | /** |
no test coverage detected