Chance wrote:
Is it possible for me to use the NodeFactory to reach the root level.. for instance can I do something along the lines of:
Node root = new Node("Content");
Thanks,
Chance
I think the root node always has an ID of -1. So you should be able to do this:
Code:
Node root = new Node(-1);
But I haven't tested it...