Run/Debug page (Project Properties dialog box)
The Run/Debug Properties page of the Project Properties dialog box lets you enter command-line arguments to pass your application or applet at run time. You also use this page to set Debugger options.
To display this page,
- Choose Run|Parameters, or
- Choose File|Project Properties, then click Run/Debug.
Default Runnable File
The name of the runnable file. Click the drop-down list to choose one of the files in your project.
Command Line Parameters
Parameters to pass to the command line compiler, either bmj (Borland Maker for Java) or bcj (Borland Compiler for Java).
Java VM Parameters
Parameters to pass to the Java Virtual Machine (VM) compiler.
Compile Project before Debugging
Compiles the project before starting the Debugger. This option is on by default.
Disable JIT While Running/Debugging
Disables the just-in-time (JIT) compiler while running and debugging. JIT, or AppAccelerator, compiles Java Virtual Machine codebytes into native operating system codebytes on the fly, making .class files run faster.
AppAccelerator does not produce additional .class files, but rather, processes .class files on the fly. When you issue a compile command, such as Make or Rebuild, the regular compiler produces cross-platform classes that are used for all platforms. Then, with the JIT compiler running on any of the platforms, the class files run faster on that platform. The JIT compiler is currently provided for Windows 95 and Windows NT.
This option is off by default.
Console I/O
Sends output to the console.
Send Run Output to Execution Log
Sends the output to the Execution Log window.
Send Run Output to Console Window
Sends the output to the task Console Window.
See also:
Building Applications with JBuilder: Sending command-line arguments to your program