I want to use JTabbedPane to display some tables (one table in each Tab). Pretty easy to realise: you make a JTabbedPane, put some scrollPanes (which represents the tabs) then you just add the table to your scrollPanes. My problem is that in scrollPanes you can add only the table and I also need to add a textbox, radiobuttons and labels.
I would like to know if there are other alternatives to do that.