read contents of system clipboard @return clipboard contents
()
| 181 | * @return clipboard contents |
| 182 | */ |
| 183 | private static String getClipboard() { |
| 184 | try { |
| 185 | Transferable contents = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null); |
| 186 | return (String) contents.getTransferData(DataFlavor.stringFlavor); |
| 187 | } catch (Throwable t) { |
| 188 | return null; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * load image from classpath (it will be the jar file) |
no outgoing calls
no test coverage detected