// add the actions specified in the meta for this frame
// (this happens for both dialog and non-dialog frames)
Iterator actionEnum = _meta.actions();
while (actionEnum.hasNext()) {
WizardActionMeta actionMeta = (WizardActionMeta)actionEnum.next();
WizardAction action = _wizard.getActionWithName(actionMeta.name());
if (action == null) {
Assert.that(false, UnknownActionMsg,
actionMeta.name(), _meta.name());
}
ListUtil.addElementIfAbsent(actionList, action);
}
// exit is the last action for non-dialog frames