parseLine.indexOf(EQUALS));
String value = parseLine.substring( parseLine.indexOf(EQUALS)+1);
if(value.length() < 1)
commandLine.setParserException(new OptionParserException("Option "+active.getDisplayName()+", must have a value"));
else {
active.addProperty(name, value);
commandLine.addOption(active);
active = null;
if(addedArgument)
commandLine.setParserException(new ArgumentParserException("An argument was given to an option that do not support it."));
}