Linkage options part in Java generation

A linkage options part provides the various elements that enable you to specify details of how you want certain statements to be implemented in your generated Java™ code. It contains some or all of the following elements:

Specifying when linkage options are final

For generated Java code, you can choose between two alternatives:
  • The linkage options specified at generation time are in effect at run time; or
  • The linkage options specified in a linkage properties file at deployment time are in effect at run time. Although you can write that file by hand, EGL generates it in this situation:
    • You set the remoteBind linkage options property to RUNTIME; and
    • You generate a Java program or wrapper with the genProperties build descriptor option set to GLOBAL or PROGRAM.

Feedback