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

/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DGetopt.java32 * options and arguments, so this version will stop processing options as soon
42 private final List<Option> options; field in class:Getopt
51 * @param opts the list of allowed options
54 options = new ArrayList<Option>();
62 * Parse the command line options
72 // End of command line options ;)
85 options.add(option);
105 // End of options
113 * Get the next option in the options strin
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DCommandLineOptions.java70 private final List<Option> options; field in class:CommandLineOptions
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('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('D', null, "Store history cache in a database (needs the JDBC driver in the classpath, typically derbyclient.jar or derby.jar)"));
81 options
[all...]

Completed in 22 milliseconds