I'm a Java n0ob....so let me apologize in advance...
I've got a jPanel that I've added a bunch of controls to, dynamically, at run-time. Later, in my code, I want to loop through all of those controls (they are jCheckBoxes) to see if they are checked or not.
In .NET - I'd be looking at some like...
For Each myControl as Control In myPanel.Controls Next
Is there a way to accomplish that with the jPanel? Should I not be using a jPanel for this?