//this.descendants = node.getDescendants(false).toArray(new Node[0]);
this.random = new Random();
}
private boolean createRandomAddNodeOp(JsopBuilder jsopBuilder) {
Node random = this.selectRandom();
String childName = this.createRandomString();
String newPath = PathUtils.concat(random.getPath(), childName);
String addPath = newPath;
if (!"".equals(this.path)) {
addPath = PathUtils.relativize(this.path, newPath);
}