Make new clipboard entry from format and raw byte data. @param format clipboard entry format @param data raw byte data @return clipboard entry
(ClipboardFormat format, byte[] data)
| 16 | * @return clipboard entry |
| 17 | */ |
| 18 | @NotNull |
| 19 | public static ClipboardEntry make(ClipboardFormat format, byte[] data) { |
| 20 | return new ClipboardEntry(format, data); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * <p>Make new plain text entry from plain text.</p> |
no outgoing calls
no test coverage detected