Lines Matching refs:task

138         abstract void process(JdepsTask task, String opt, String arg) throws BadArgs;
179 void process(JdepsTask task, String opt, String arg) {
180 task.options.help = true;
184 void process(JdepsTask task, String opt, String arg) throws BadArgs {
185 if (task.command != null) {
186 throw new BadArgs("err.command.set", task.command, opt);
188 task.command = task.genDotFile(Paths.get(arg));
192 void process(JdepsTask task, String opt, String arg) {
193 task.options.showSummary = true;
200 void process(JdepsTask task, String opt, String arg) throws BadArgs {
204 task.options.verbose = VERBOSE;
205 task.options.filterSameArchive = false;
206 task.options.filterSamePackage = false;
209 task.options.verbose = MODULE;
212 task.options.verbose = PACKAGE;
215 task.options.verbose = CLASS;
223 void process(JdepsTask task, String opt, String arg) {
224 task.options.apiOnly = true;
229 void process(JdepsTask task, String opt, String arg) {
230 task.options.findJDKInternals = true;
231 if (task.options.includePattern == null) {
232 task.options.includePattern = Pattern.compile(".*");
238 void process(JdepsTask task, String opt, String arg) throws BadArgs {
239 if (task.command != null) {
240 throw new BadArgs("err.command.set", task.command, opt);
243 task.options.addmods.addAll(mods);
244 task.command = task.checkModuleDeps(mods);
248 void process(JdepsTask task, String opt, String arg) throws BadArgs {
249 if (task.command != null) {
250 throw new BadArgs("err.command.set", task.command, opt);
252 task.command = task.genModuleInfo(Paths.get(arg), false);
256 void process(JdepsTask task, String opt, String arg) throws BadArgs {
257 if (task.command != null) {
258 throw new BadArgs("err.command.set", task.command, opt);
260 task.command = task.genModuleInfo(Paths.get(arg), true);
264 void process(JdepsTask task, String opt, String arg) throws BadArgs {
265 if (task.command != null) {
266 throw new BadArgs("err.command.set", task.command, opt);
268 task.command = task.listModuleDeps(false);
272 void process(JdepsTask task, String opt, String arg) throws BadArgs {
273 if (task.command != null) {
274 throw new BadArgs("err.command.set", task.command, opt);
276 task.command = task.listModuleDeps(true);
282 void process(JdepsTask task, String opt, String arg) {
283 task.options.classpath = arg;
287 void process(JdepsTask task, String opt, String arg) throws BadArgs {
288 task.options.modulePath = arg;
292 void process(JdepsTask task, String opt, String arg) throws BadArgs {
293 task.options.upgradeModulePath = arg;
297 void process(JdepsTask task, String opt, String arg) throws BadArgs {
299 task.options.systemModulePath = null;
303 task.options.systemModulePath = arg;
310 void process(JdepsTask task, String opt, String arg) throws BadArgs {
312 task.options.addmods.addAll(mods);
316 void process(JdepsTask task, String opt, String arg) throws BadArgs {
317 if (!task.options.rootModules.isEmpty()) {
320 task.options.rootModules.add(arg);
321 task.options.addmods.add(arg);
325 void process(JdepsTask task, String opt, String arg) throws BadArgs {
327 task.options.multiRelease = JarFile.baseVersion();
337 task.options.multiRelease = Runtime.Version.parse(arg);
344 void process(JdepsTask task, String opt, String arg) {
345 task.options.packageNames.add(arg);
349 void process(JdepsTask task, String opt, String arg) {
350 task.options.regex = Pattern.compile(arg);
354 void process(JdepsTask task, String opt, String arg) {
355 task.options.requires.add(arg);
356 task.options.addmods.add(arg);
360 void process(JdepsTask task, String opt, String arg) {
361 task.options.filterRegex = Pattern.compile(arg);
367 void process(JdepsTask task, String opt, String arg) {
370 task.options.filterSamePackage = true;
371 task.options.filterSameArchive = false;
375 task.options.filterSameArchive = true;
376 task.options.filterSamePackage = false;
379 task.options.filterSameArchive = false;
380 task.options.filterSamePackage = false;
388 void process(JdepsTask task, String opt, String arg) throws BadArgs {
389 task.options.includePattern = Pattern.compile(arg);
394 void process(JdepsTask task, String opt, String arg) throws BadArgs {
395 task.options.showProfile = true;
400 void process(JdepsTask task, String opt, String arg) {
401 task.options.depth = 0;
403 task.options.filterSameArchive = false;
404 task.options.filterSamePackage = false;
409 void process(JdepsTask task, String opt, String arg) {
410 task.options.inverse = true;
412 task.options.compileTimeView = true;
413 task.options.filterSamePackage = true;
414 task.options.filterSameArchive = true;
419 void process(JdepsTask task, String opt, String arg) {
420 task.options.compileTimeView = true;
421 task.options.filterSamePackage = true;
422 task.options.filterSameArchive = true;
423 task.options.depth = 0;
428 void process(JdepsTask task, String opt, String arg) {
429 task.options.nowarning = true;
434 void process(JdepsTask task, String opt, String arg) {
435 task.options.version = true;
439 void process(JdepsTask task, String opt, String arg) {
440 task.options.fullVersion = true;
444 void process(JdepsTask task, String opt, String arg) {
445 task.options.showLabel = true;
449 void process(JdepsTask task, String opt, String arg) {
450 task.options.showModule = false;
454 void process(JdepsTask task, String opt, String arg) throws BadArgs {
456 task.options.depth = Integer.parseInt(arg);