@Override
public int parseArguments(Parameters params) throws CmdLineException {
MapSetter mapSetter = (MapSetter)setter;
try {
mapSetter.addValue(params.getParameter(0));
} catch (RuntimeException e) {
throw new CmdLineException(owner, e.getMessage());
}
return 1;
}