Searched refs:Option (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DCommandLineOptions.java44 static class Option { class in class:CommandLineOptions
50 public Option(char opt, String arg, String descr) { method in class:CommandLineOptions.Option
70 private final List<Option> options;
73 options = new ArrayList<Option>();
74 options.add(new Option('?', null, "Help"));
75 options.add(new Option('A', "ext:analyzer", "Files with the named 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.opensolaris.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('
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DGetopt.java37 private static class Option { class in class:Getopt
42 private final List<Option> options;
54 options = new ArrayList<Option>();
83 Option option = new Option();
99 throw new ParseException("Option " + chars[jj] + " requires an argument", ii);
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DCommandLineOptionsTest.java79 Iterator<CommandLineOptions.Option> iter = instance.getOptionsIterator();
81 CommandLineOptions.Option o = iter.next();

Completed in 9 milliseconds