Using version 2
I have a class 'thing a'.
I need a class 'container b' which consists of a varying number of 'thing a's. A class, simply so I can use the mouse to discover which 'thing a' within 'container b'
I have a fixed number of 'container b's
I think I need a Array of 'container b's so I can reference... [b,a]
When the mouse is over a 'thing a' I need the number of 'thing a' within 'container b' and also which 'container b'.
Should I be looking at an ArrayList of 'container b's?
or
Is this a simple 2D array of objects?
Thank you
1