EntireX Version 9.7
 —  EntireX Java Wrapper  —

Using the Java Wrapper in Command-line Mode

This document covers the following topics:

See Using the EntireX Workbench in Command-line Mode for the general command-line syntax.


Command-line Options

Note:
The commands -java:allbeancompliant, -java:tester and -java:clientbeancompliant commands will generate a Bean-compliant Java client. To generate client with inner classes (the old way) use -java:client or -java:all commands.

Task Command Option Description
Generate all Java source files for the specified IDL file(s). -java:all -clientpackage The client package name for the wrapper class.
-customclass A non-default superclass of the wrapper class.
-help Display this usage message.
-serverpackage The server package name for the server interface object class.
-sourcefolder The folder for the generated classes.
Generate the JavaBean-compliant Java client(s) for the specified IDL file(s). -java:allbeancompliant -clientpackage The client package name for the wrapper class.
-customclass A non-default superclass of the wrapper class.
-help Display this usage message.
-serverpackage The server package name for the server interface object class.
-sourcefolder The folder for the generated classes.
Generate the Java client(s) for the specified IDL file(s). -java:client -clientpackage The client package name for the wrapper class.
-customclass A non-default superclass of the wrapper class.
-help Display this usage message.
-public Generate a public wrapper class.
-sourcefolder The folder for the generated classes.
Generate the JavaBean-compliant Java client(s) for the specified IDL file(s). -java:clientbeancompliant -clientpackage The client package name for the wrapper class.
-customclass A non-default superclass of the wrapper class.
-help Display this usage message.
-public Generate a public wrapper class.
-sourcefolder The folder for the generated classes.
Generate the Java server(s) for the specified IDL file(s). -java:server -help Display this usage message.
-serverpackage The server package name for the server interface object class.
-sourcefolder The folder for the generated classes.
Generate the Java client(s) and tester(s) for the specified IDL file(s). -java:tester -clientpackage The client package name for the wrapper class.
-customclass A non-default superclass of the wrapper class.
-help Display this usage message.
-sourcefolder The folder for the generated classes.

Top of page

Example

<workbench> -java:client /Demo/Example.idl -sourcefolder /Demo/src1 -clientpackage com.client

where <workbench> is a placeholder for the actual Workbench starter as described under Using the EntireX Workbench in Command-line Mode.

The name of the IDL file and the source folder include the project name. In the example, the project Demo is used. If the IDL file name describes a file inside the Eclipse workspace, the name is case-sensitive.

If the first part of the IDL file name is not a project name in the current workspace, the IDL file name is used as a file name in the file system. Thus, the IDL files do not need to be part of an Eclipse project.

If the source folder does not exist in the workspace but the first part describing the project exists, the source folder is created.

If the IDL file is located outside the Eclipse workspace, the source folder is also a folder in the file system.

Status and processing messages are written to standard output (stdout), which is normally set to the executing shell window.

Top of page

Further Examples

Windows

Linux

Top of page