domain/src/main/java/demoapp/dom/types/causeway/treenode/FileTreeNodeService.java [61:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static TreeNode<FileNodeVm> newTree(FactoryService factoryService) {
        TreeNode<FileNodeVm> tree;
        val rootFile = FileSystems.getDefault().getRootDirectories().iterator().next().toFile();
        val rootNode = new FileNodeVm(rootFile);
        tree = TreeNode.root(rootNode, FileSystemTreeAdapter.class, factoryService);
        tree.expand(TreePath.of(0)); // expand the root node
        return tree;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



domain/src/main/java/demoapp/dom/domain/properties/PropertyLayout/navigable/FileTreeNodeService.java [61:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static TreeNode<FileNodeVm> newTree(FactoryService factoryService) {
        TreeNode<FileNodeVm> tree;
        val rootFile = FileSystems.getDefault().getRootDirectories().iterator().next().toFile();
        val rootNode = new FileNodeVm(rootFile);
        tree = TreeNode.root(rootNode, FileSystemTreeAdapter.class, factoryService);
        tree.expand(TreePath.of(0)); // expand the root node
        return tree;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



