Soft Word wrap @param s the string @param len the length to wrap @return the wrapped string
(String s, int len)
| 136 | * @return the wrapped string |
| 137 | */ |
| 138 | public static String wrapWords(String s, int len) { |
| 139 | return wrap(s, len, null, true); |
| 140 | } |
| 141 | |
| 142 | public static String wrapWordsPrefixed(String s, String prefix, int len) { |
| 143 | return wrapPrefixed(s, prefix, len, null, true); |
no test coverage detected