460 {"zz usage text",
461 "Usage: {0} <options> <class> <arguments>\n" +
462 "\n" +
463 "where options include:\n" +
464 " -? -h --help -help print this help message and exit\n" +
465 " -sourcepath <directories separated by \"{1}\">\n" +
466 " directories in which to look for source files\n" +
467 " -attach <address>\n" +
468 " attach to a running VM at the specified address using standard connector\n" +
469 " -listen <address>\n" +
470 " wait for a running VM to connect at the specified address using standard connector\n" +
471 " -listenany\n" +
472 " wait for a running VM to connect at any available address using standard connector\n" +
473 " -launch\n" +
474 " launch VM immediately instead of waiting for ''run'' command\n" +
475 " -listconnectors list the connectors available in this VM\n" +
476 " -connect <connector-name>:<name1>=<value1>,...\n" +
477 " connect to target VM using named connector with listed argument values\n" +
478 " -dbgtrace [flags] print info for debugging {0}\n" +
479 " -trackallthreads Track all threads, including virtual threads.\n" +
480 " Virtual threads are a preview feature of the Java platform.\n" +
481 " -tclient run the application in the HotSpot(TM) Client Compiler\n" +
482 " -tserver run the application in the HotSpot(TM) Server Compiler\n" +
483 " -R<option> forward <option> to debuggee process if launched by jdb, otherwise ignored\n" +
484 "\n" +
485 "options forwarded to debuggee process if launched by jdb (shorthand instead of using -R):\n" +
486 " -v -verbose[:class|gc|jni]\n" +
487 " turn on verbose mode\n" +
488 " -D<name>=<value> set a system property\n" +
489 " -classpath <directories separated by \"{1}\">\n" +
490 " list directories in which to look for classes\n" +
491 " -X<option> non-standard target VM option\n" +
492 "\n" +
493 "<class> is the name of the class to begin debugging\n" +
494 "<arguments> are the arguments passed to the main() method of <class>\n" +
495 "\n" +
496 "For command help type ''help'' at {0} prompt"},
497 // END OF MATERIAL TO LOCALIZE
498 };
499
500 return temp;
|
460 {"zz usage text",
461 "Usage: {0} <options> <class> <arguments>\n" +
462 "\n" +
463 "where options include:\n" +
464 " -? -h --help -help print this help message and exit\n" +
465 " -sourcepath <directories separated by \"{1}\">\n" +
466 " directories in which to look for source files\n" +
467 " -attach <address>\n" +
468 " attach to a running VM at the specified address using standard connector\n" +
469 " -listen <address>\n" +
470 " wait for a running VM to connect at the specified address using standard connector\n" +
471 " -listenany\n" +
472 " wait for a running VM to connect at any available address using standard connector\n" +
473 " -launch\n" +
474 " launch VM immediately instead of waiting for ''run'' command\n" +
475 " -listconnectors list the connectors available in this VM\n" +
476 " -connect <connector-name>:<name1>=<value1>,...\n" +
477 " connect to target VM using named connector with listed argument values\n" +
478 " -dbgtrace [flags] print info for debugging {0}\n" +
479 " -trackallthreads Track all threads, including virtual threads.\n" +
480 " -tclient run the application in the HotSpot(TM) Client Compiler\n" +
481 " -tserver run the application in the HotSpot(TM) Server Compiler\n" +
482 " -R<option> forward <option> to debuggee process if launched by jdb, otherwise ignored\n" +
483 "\n" +
484 "options forwarded to debuggee process if launched by jdb (shorthand instead of using -R):\n" +
485 " -v -verbose[:class|gc|jni]\n" +
486 " turn on verbose mode\n" +
487 " -D<name>=<value> set a system property\n" +
488 " -classpath <directories separated by \"{1}\">\n" +
489 " list directories in which to look for classes\n" +
490 " -X<option> non-standard target VM option\n" +
491 "\n" +
492 "<class> is the name of the class to begin debugging\n" +
493 "<arguments> are the arguments passed to the main() method of <class>\n" +
494 "\n" +
495 "For command help type ''help'' at {0} prompt"},
496 // END OF MATERIAL TO LOCALIZE
497 };
498
499 return temp;
|