usage = "Whether to print the graph as the interpreter visits it")
private boolean verbose;
public static CommandLineOptions fromCmdLineArgs(String[] args) throws CmdLineException {
CommandLineOptions options = new CommandLineOptions();
CmdLineParser parser = new CmdLineParser(options);
try {
parser.parseArgument(args);
} catch (CmdLineException e) {
System.err.printf("Invalid command line: %s\n\nUsage:\n", e.getMessage());
parser.setUsageWidth(100);
parser.printUsage(System.err);
throw e;
}
return options;
}