Exemplo n.º 1
0
 public TableCellEditor getCellEditor(int row, int column) {
   final ColumnInfo<Item, ?> columnInfo =
       getListTableModel().getColumnInfos()[convertColumnIndexToModel(column)];
   final TableCellEditor editor =
       columnInfo.getEditor(getListTableModel().getItems().get(convertRowIndexToModel(row)));
   return editor == null ? super.getCellEditor(row, column) : editor;
 }