| CommandLineOptions.java | 41 static class Option { 43 char option; field in class:CommandLineOptions.Option 47 public Option(char opt, String arg, String descr) { 48 option = opt; 56 sb.append(option); 67 private final List<Option> options; 70 options = new ArrayList<Option>(); 71 options.add(new Option('q', null, "Run as quietly as possible")); 72 options.add(new Option('v', null, "Print progress information as we go along")); 73 options.add(new Option('e', null, "Economical - consumes less disk space. It does not generate hyper text cross reference (…) [all...] |