Aye wrote:
public interface Simple {
String string();
List<SimpleValue> values();
}
values() is a property, and like any other property you need to set it
for it to be updated, which you never did.
I.e. you need to do:
List<SimpleValue> list = simpleEntity.values();
list.add(value);
simpleEntity.values().set(list);
Then Qi4j will know that the values() property has been updated, and can
store it properly.
/Rickard
_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev