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

  /opengrok/trunk/src/org/opensolaris/opengrok/util/
Getopt.java 34 * as it encounters an argument.
40 String argument; field in class:Getopt.Option
51 * @param argv argument vector
65 * @throws ParseException if an illegal argument is passed
84 throw new ParseException("Unknown argument: " + argv[ii].substring(jj), ii);
90 // does this option take an argument?
92 // next should be an argument
94 // Rest of this is the argument
95 option.argument = argv[ii].substring(jj + 1);
98 // next argument vector contains the argumen
    [all...]
  /opengrok/trunk/src/org/opensolaris/opengrok/index/
CommandLineOptions.java 44 String argument; field in class:CommandLineOptions.Option
49 argument = arg;
57 if (argument != null) {
59 sb.append(argument);
108 if (o.argument != null) {
166 if (o.argument != null) {
168 out.print(o.argument);
203 * @param argv argument vector. not used.

Completed in 180 milliseconds