Tree t = root.getTree("/");
t.setProperty("pid", "foo");
t.addChild("a").setProperty("pid", "foo");
t.addChild("b").setProperty("pid", "bar");
t.addChild("c").setProperty("pid", "foo");
t.addChild("d").setProperty("cid", "foo");
Tree content = t.addChild("content");
content.addChild("x").setProperty("pid", "foo");
content.addChild("y").setProperty("pid", "baz");
content.addChild("z").setProperty("pid", "bar");