HomeSort by relevance Sort by last modified time
    Searched refs:option (Results 1 - 3 of 3) sorted by null

  /opengrok/trunk/src/org/opensolaris/opengrok/util/
Getopt.java 38 static class Option {
39 char option; field in class:Getopt.Option
43 private final List<Option> options;
55 options = new ArrayList<Option>();
87 Option option = new Option(); local
88 option.option = chars[jj];
89 options.add(option);
    [all...]
  /opengrok/trunk/src/org/opensolaris/opengrok/index/
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...]
  /opengrok/trunk/lib/
lucene-core-2.4.1.jar 

Completed in 1919 milliseconds