Hi,
Imagine we've a list property
public List<Item> getItems();
Where Item is an entity.
I'd like to make the items property persistent. How could I maintain
the order of the items in the list?
The only possibility I see right now is to wrap this list as a map
where keys are indexes. However this is very weird if you ask me.
Bye.
/lexi