(String s, ClipboardOwner owner)
| 2293 | } |
| 2294 | |
| 2295 | public static void copy(String s, ClipboardOwner owner) { |
| 2296 | StringSelection stringSelection = new StringSelection(s); |
| 2297 | getClipboard().setContents(stringSelection, owner == null ? stringSelection : owner); |
| 2298 | } |
| 2299 | |
| 2300 | /** |
| 2301 | * Register a TransferHandler for the onpaste event for this component. This |
no test coverage detected