Lines Matching defs:option

39  * Also determine the length of the command line option. For example,
40 * for a option "-header" there will be a string argument associated, then the
41 * the length of option "-header" is two. But for option "-nohelp" no argument
46 * use "-helpfile" option when already "-nohelp" option is used.
70 * Argument for command line option "-header".
75 * Argument for command line option "-packagesheader".
80 * Argument for command line option "-footer".
85 * Argument for command line option "-doctitle".
90 * Argument for command line option "-windowtitle".
95 * Argument for command line option "-top".
100 * Argument for command line option "-bottom".
105 * Argument for command line option "-helpfile".
110 * Argument for command line option "-stylesheetfile".
115 * Argument for command line option "-Xdocrootparent".
120 * True if command line option "-nohelp" is used. Default value is false.
125 * True if command line option "-splitindex" is used. Default value is
131 * False if command line option "-noindex" is used. Default value is true.
136 * True if command line option "-use" is used. Default value is false.
141 * False if command line option "-notree" is used. Default value is true.
146 * True if command line option "-nodeprecated" is used. Default value is
152 * True if command line option "-nonavbar" is used. Default value is false.
157 * True if command line option "-nooverview" is used. Default value is
163 * True if command line option "-overview" is used. Default value is false.
168 * This is true if option "-overview" is used or option "-overview" is not
223 * @param options The array of option names and values.
287 * Returns the "length" of a given option. If an option takes no
295 * are not case-sensitive, use toLowerCase() on the option string
299 * @return number of arguments + 1 for a option. Zero return means
300 * option not known. Negative value means error occurred.
302 public int optionLength(String option) {
304 if ((result = super.optionLength(option)) > 0) {
308 option = option.toLowerCase();
309 if (option.equals("-nodeprecatedlist") ||
310 option.equals("-noindex") ||
311 option.equals("-notree") ||
312 option.equals("-nohelp") ||
313 option.equals("-splitindex") ||
314 option.equals("-serialwarn") ||
315 option.equals("-use") ||
316 option.equals("-nonavbar") ||
317 option.equals("-nooverview")) {
319 } else if (option.equals("-help")) {
322 } else if (option.equals("-footer") ||
323 option.equals("-header") ||
324 option.equals("-packagesheader") ||
325 option.equals("-doctitle") ||
326 option.equals("-windowtitle") ||
327 option.equals("-top") ||
328 option.equals("-bottom") ||
329 option.equals("-helpfile") ||
330 option.equals("-stylesheetfile") ||
331 option.equals("-charset") ||
332 option.equals("-overview") ||
333 option.equals("-xdocrootparent")) {
437 * be "overview-summary.html" if "-overview" option is used or no
489 * Generate "overview.html" page if option "-overview" is used or number of