Insertion in JTable
Hi everyone!
I have a big problem with JTable! I want to add an Object into a cell with the following line of code
this.jTable.setValueAt(ob,rowsel,colsel);
the variable ob is an Object which have a String variable with a name, and other variables. I want to get this object when I select a cell with the jTable.getValueAt(..) method. My problem is making the text in the String appear in the cell where I inserted it.
My question is how to insert an Object on a cell and make some text appear on it, because I can only add an Object per cell.
Please I need help! Thanks in advance;)

