addWizardStep(current);
Map<String, InputComponent<?, Object>> inputs = getInputs();
CommandLineParser parser = commandLineUtil.generateParser(root, shellContext, inputs);
CommandLine cmdLine = parser.parse(line, true);
Map<String, InputComponent<?, Object>> populatedInputs = commandLineUtil.populateUIInputs(cmdLine, inputs);
ShellValidationContext validationContext = validate();
List<String> errors = validationContext.getErrors();
if (errors.isEmpty())
{
if (current instanceof UIWizard)
{
NavigationResult next = ((UIWizard) current).next(getContext());