Hello,
I use the DefaultTableModel, and I have found the method
setValueAt(object,int,int) - nut isn't there anything smartere you can do?
Brian
Ivan - 29 Apr 2005 01:33 GMT
Set the table values and then call
public void fireTableRowsUpdated(int firstRow, int lastRow) inherited from
AbstractTableModel
Ivan
> Hello,
>
> I use the DefaultTableModel, and I have found the method
> setValueAt(object,int,int) - nut isn't there anything smartere you can do?
>
> Brian
John McGrath - 29 Apr 2005 06:30 GMT
> I use the DefaultTableModel, and I have found the method
> setValueAt(object,int,int) - nut isn't there anything smartere you can
> do?
If you are not happy with the methods that DefaultTableModel provides,
then subclass it and add any methods that you want. Just make sure you
fire the appropriate events when you modify the model.

Signature
Regards,
John McGrath