Hi,

world.setProperty("message", "Hello, World!");
> world.setProperty("message", "Hello");
> Is there anyway I can add both properties?


No. The JCR specification only supportd same name node siblings are
supported. As in XML: you can't define two attributes with the same name:

<p id="hello" id="world" />

This is illegal. Same name node siblings are supported:

<p /><p />

Regards.
Thomas

Reply via email to