(TextFlow text, String str)
| 85 | } |
| 86 | |
| 87 | public static void stringToTextFlowNodes(TextFlow text, String str) { |
| 88 | text.getChildren().setAll(UIUtil.stringToTextFlowNodes(str)); |
| 89 | } |
| 90 | public static List<Node> stringToTextFlowNodes(String str) { |
| 91 | List<Node> ret = new ArrayList<>(); |
| 92 | int i = 0; |