Make new rtf entry from plain text. @param text raw string text @return clipboard entry
(String text)
| 49 | * @return clipboard entry |
| 50 | */ |
| 51 | @NotNull @SneakyThrows |
| 52 | public static ClipboardEntry makeRTF(String text) { |
| 53 | return makeString(ClipboardFormat.RTF, text); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * <p>Make new clipboard entry from format and plain text.</p> |
nothing calls this directly
no test coverage detected