}
public CellEditor getCellEditor(int row, int column)
{
TableColumn tableColumn = columnsModelAdapter.getColumn(column);
CellEditor editor = tableColumn == null ? null : tableColumn.getCellEditor();
if (editor == null)
{
editor = getDefaultEditor(getTableModel().getColumnClass(column));
}
return editor;