106107108109110111112113114115
children[i] = new DirectoryNode(_session, childPath); else children[i] = new FileNode(_session, childPath); } return new BaseNodeIterator(children); } catch (IOException e) { throw new RepositoryException(e); } }
9596979899100101
public NodeIterator getNodes() throws RepositoryException { FileContentNode []children = new FileContentNode[] { _child }; return new BaseNodeIterator(children); }