for (Enumeration e = model.elements(); e.hasMoreElements(); )
defaultValues.add(e.nextElement());
break;
}
ParamEditCommand cmd =
new ParamEditCommand(param, nameField.getText(),
questionField.getText(), type, arity,
defaultValues);
cmd.perform();
commands.add(cmd);
}