At 12:06 PM 9/22/99 +0200, [EMAIL PROTECTED] wrote:
>Hello,
>
>Following is a patch to jde.debugger.Application.java to set the -classic
>flag as an VM Launching Connector Argument to attach the classic VM:
>
>345c345,355
>< commandLine += quote + iterator.next() + quote + " ";
>---
>> String arg = (String)iterator.next();
>> if (arg.equalsIgnoreCase("-classic")) {
>> Connector.Argument optionsArg =
>> (Connector.Argument)argumentMap.get("options");
>> String options = optionsArg.value();
>> options = "-classic" + " " + options;
>> optionsArg.setValue(options);
>> signal(MESSAGE, "VM options: '" + options + "'");
>> }
>> else
>> commandLine += quote + arg + quote + " ";
>
>The "options" connector argument must be used to set options, in addition
>to the standard debugging options.
>
>In the current version of Application.java the -classic option is set as an
>application command line argument and not recognized as a valid VM option.
>
>Hope this helps.
>
It certainly does. I'll include it in the next release.
Merci beaucoup, David.
Regards,
Paul