Rational Developer for System z
PL/I for Windows, Version 8.0, Programming Guide

Step 1: Writing the Java Program

Declare the Native Method

The native method for this sample program looks like this:

public native void pliShowInt();

Load the Native Library

The Java statement that loads the native library for this sample program looks like this:

 static {
   System.loadLibrary("passInt");
 }
Rational Developer for System z
PL/I for Windows, Version 8.0, Programming Guide