boolean verbose = false;
if (commandLine.hasOption(OPTION_VERBOSE.getOpt())) {
verbose = true;
}
DocumentFormatRegistry registry;
if (commandLine.hasOption(OPTION_XML_REGISTRY.getOpt())) {
File registryFile = new File(commandLine.getOptionValue(OPTION_XML_REGISTRY.getOpt()));
if (!registryFile.isFile()) {
System.err.println("ERROR: specified XML registry file not found: " + registryFile);
System.exit(EXIT_CODE_XML_REGISTRY_NOT_FOUND);