I'm trying to get a reference to a group of ArrayLists into another object to be used by that object?
At first I collected the group in another ArrayList. But when extrapolating them their is no way to define which ArrayList is which, as all the ArrayLists contain the same object. The ArrayLists don't have names.
Background to the Problem:
Imagine i have a mass of data..I arrange the data and assign values to objects. This data upon completion needs to be seperated into 4 categorys, which can be down at the first processing stage. So imagine 4 arraylists of objects. The next stage involves more work by a seperate object on these data objects. So my problem is transferring them in a way that is future proof so if more categorys become a neccesity its not so hard to do. So in the first processing object I add them to a list. List is passed into the second processing object at a later stage.
ArrayListobjects into anotherArrayListyou should be able to take them out in the same order that you added them by usingget(int index). Maybe if you showed the code... – Bill the Lizard♦ Nov 9 '10 at 13:56