I have some swing components (JSliders and JTextFields to be precise) in an AbstractCollection. The user will decide in runtime how many components are needed each time. Is there any way to do that through a GUI editor, preferably the Swing GUI Builder in NetBeans or any other IDE, in order to use the facilities a GUI Editor provides?
One work around I have thought so far is to put all the components in a JTable and each time I will create a JTable of an appropriate size. I wonder though if there is any other way.