Searched defs:Option (Results 1 - 2 of 2) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/util/
H A DGetopt.java37 private static class Option { class in class:Getopt
42 private final List<Option> options;
83 Option option = new Option();
99 throw new ParseException("Option " + chars[jj] + " requires an argument", ii);
/opengrok/src/org/opensolaris/opengrok/index/
H A DCommandLineOptions.java43 private final List<Option> options;
45 static class Option { class in class:CommandLineOptions
51 public Option(char opt, String arg, String descr) { method in class:CommandLineOptions.Option
74 options.add(new Option('?', null, "Help"));
75 options.add(new Option('A', ".ext|prefix.:analyzer", "Files with the named prefix/extension should be analyzed with the specified class"));
76 options.add(new Option('a', ON_OFF, "Allow or disallow leading wildcards in a search"));
77 options.add(new Option('B', "url", "Base URL of the user Information provider. Default: \"http://www.myserver.org/viewProfile.jspa?username=\""));
78 options.add(new Option('C', null, "Print per project percentage progress information(I/O extensive, since one read through dir structure is made before indexing, needs -v, otherwise it just goes to the log)"));
79 options.add(new Option('c', "/path/to/ctags", "Path to Exuberant Ctags from http://ctags.sf.net by default takes the Exuberant Ctags in PATH."));
80 options.add(new Option('
[all...]

Completed in 553 milliseconds