(String str)
| 75 | } |
| 76 | |
| 77 | private static Text text(String str) { |
| 78 | Text text = new Text(str); |
| 79 | text.getStyleClass().add("text"); |
| 80 | return text; |
| 81 | } |
| 82 | |
| 83 | private static String unescape(String str) { |
| 84 | return str.replace("\\n", "\n"); |
no test coverage detected