Hi all,
I need some help!
I got a class MyClassModel who extends AbstractTablemodel. From a JPanel, i got a JTable that i want to take the model of this class. How can i instanciate this class from my JTable
Something like that :
JTable table = new Jtable(new MyClassModel()), but this not work.
I also want to pass to MyClassModel a different data (an array or something else) to build my table
thank you for your help