I need help with HashSets
I have classes A with a
String attribue "name".
I have a Hash set that contains a set of different classes B
each B is instantiated by passing A (to be stored as an attribute of B) along with other data.
I need to be able to change the name of an instance of A and have this change propogated to change the A attribute in all classes of B using that instance.
Does anyone know of a method to do this without iterating through the hashset of B's, as it's a big hash set?
Thanks in advance
luke