actions.clear();
ITableModel objTableModel = getTableModel();
for(Iterator it = savedActions.iterator(); it.hasNext();)
{
ITableAction action = (ITableAction) it.next();
action.executeTableAction(objTableModel);
}
// ensure that the changes are saved
fireObservedStateChange();
}