Hi,
I was wondering what would be the best data structure(s) to use for the following scenario:
I have 2 object types A and B
A may contain many instances of B
A.name is unique. B.name is unique within it's instance of A (though not globally unique)
I would like to be able to provide accessor methods such as getA(String aName) returns a; getB(String aName, bName) returns b;
All help is much appreciated,
Chris