public void setValueAt(Object aValue, int row, int column) {
try {
FollowupData data = followupList.get(row);
FollowupLocal followUp = new FollowupLocal(data.details, new SerRenLocal(data.details.serrenUpID, am), am);
if (column == COL_CALLED) {
FollowupEventData event = followUp.getLastEvent();
event.setCalled((Boolean) aValue);
followUp.save1();
data.lastEventDetails.called = (Boolean) aValue;
}
if (column == COL_CANCELLED) {
FollowupEventData event = followUp.getLastEvent();
event.setCancelled((Boolean) aValue);
followUp.save1();
data.lastEventDetails.cancelled = (Boolean) aValue;
}
fireTableCellUpdated(row, column);
} catch (ClipsException ex) {