|
JTable DataModel - how to get
Hi y'all;
I am creating a project where I use a JTable that i create by specifying rows and columns
for example:
JTable jt = new JTable(10,30);
So, how can I access (and manipulate) the underlying array if I have not used an array to create the table. That is, how can I get to
jt DataModel DataVector elementData
Thanks for your help.
|