* Add arg element
*/
public void add(ArgConfigImpl value) throws ConfigException {
if (value.getName() != null) {
if (argConfigMap.containsKey(value.getName())) {
throw new ConfigException("Duplicate arg '" + value.getName() + "' in " + toInlineString());
}
argConfigMap.put(value.getName(), value);
}
argConfigList.add(value);
}