Iterator<Action> i = applicableActionList.iterator();
while (i.hasNext()) {
Action action = (Action) i.next();
try {
action.body(interpretationContext, body);
} catch (ActionException ae) {
cai
.addError("Exception in end() methd for action [" + action + "]",
ae);
}