*/
@Override
public Component prepareEditor(TableCellEditor editor, int row, int column) {
if (editor instanceof LDEditor) {
LDEditor lde = ((LDEditor) editor);
lde.setStatus("Editing Service Demands for " + stationNames[row], stationNames[row], classNames, serviceDemands[row]);
lde.startEditing(this, row);
return getCellRenderer(row, column).getTableCellRendererComponent(this, "LD Settings...", true, true, row, column);
} else {
return super.prepareEditor(editor, row, column);
}