Hi There
1. Say we have a map, that holds a list of objects
2. I read the map, and display the items in a scroll list in the same order read from the map
3. if I provide the user with the tools to edit an item in the scroll list and save the contents of the updated item back to the map using map.put(Key,value)
Can I assume that the updated item holds the exact same position in the map, as it did before "put"?
in other words, would the order of the items displayed in the original scroll list correspond to the order of the items in the map after the "put" operation?
Thanks in advance?
1. Say we have a map, that holds a list of objects
2. I read the map, and display the items in a scroll list in the same order read from the map
3. if I provide the user with the tools to edit an item in the scroll list and save the contents of the updated item back to the map using map.put(Key,value)
Can I assume that the updated item holds the exact same position in the map, as it did before "put"?
in other words, would the order of the items displayed in the original scroll list correspond to the order of the items in the map after the "put" operation?
Thanks in advance?