Lines Matching refs:option
38 char option;
83 Option option = new Option();
84 option.option = chars[jj];
85 options.add(option);
86 // does this option take an argument?
91 option.argument = argv[ii].substring(jj + 1);
97 option.argument = argv[ii];
113 * Get the next option in the options string.
114 * @return the next valid option, or -1 if all options are processed
121 ret = options.get(current).option;
135 * Get the argument to the current option