55565758596061626364
protected Node createRootNode() throws NodeCreationException { if (node == null) { try { node = onCreateNode.call(); } catch (Exception e) { throw new NodeCreationException(e); } } return node; }
5960616263646566
fxmlLoader.setLocation(url); fxmlLoader.setController(controller); try { return (Node) fxmlLoader.load(); } catch (IOException e) { throw new NodeCreationException(e.getMessage(), e); } }
6061626364656667
5051525354555657
fxmlLoader = new FXMLLoader(); fxmlLoader.setLocation(url); try { return (Node) fxmlLoader.load(); } catch (IOException e) { throw new NodeCreationException(e.getMessage(), e); } }