else
{
value = shell.promptCompleter(optionDescriptor, option.getCompleterType());
}
}
else if (((value != null) && (promptType != null)) && !promptType.matches(value.toString()))
{
// make sure the current option value is OK
ShellMessages.info(shell, "Could not parse [" + value + "]... please try again...");
value = shell.promptCommon(optionDescriptor, promptType);
}