siwng jtable 点击单元格,更改其他单元格控件的是否可使用情况

alt text

我要的效果是,单击一个单元格,使同一行的其他单元格的控件不能再点击或使用,下面是我使用的方法:

DefaultCellEditor editor = (DefaultCellEditor)backQicai_jtable.getCellEditor(row, 5);
JCheckBox checkbox = (JCheckBox)editor.getComponent();
checkbox.setEnabled(false);
backQicai_jtable.updateUI();

但是这样做后,它整个一列的控件都不能再点击了.... 有哪位知道怎么做的?谢谢...