if (propertyPath.isRootPath()) {
path = PathImpl.create();
path.getLeafNode().setName(name);
} else {
path = PathImpl.copy(propertyPath);
path.addNode(new NodeImpl(name));
}
return new NodeBuilderDefinedContextImpl(parent, messageTemplate, path);
}
public NodeBuilderCustomizableContext addPropertyNode(String name) {