I'm searching for a good solution to create a subset from a existing set. For example, i have a set with 1000 Objects (or whatever..) and i need to make a "team" that is made of 100 Objects from that main set. I'm working with JAVA and i know that if I just create another array with that 100 Objects that will do.
Assuming that i have a class A, a class B and a Class C. Class B contains the set and Class C contains the subset (team..wtv) and the set is made of Class A objects. My problem is that Class A "needs to know" if it makes part of an Object of Class C an what specific instance of Class C he is part of.
I hope i was clearly enough to explain my situation and get some help.
Thank you ;]