Getting the Instance Parameter in Non-Static Native Methods

When a non-static native method is called, one of the parameters that Java™ passes to the native method is the object that the method applies to. This is called the "instance parameter", referred to as "this" in a Java method. Within the native method itself, you can use the built-in function %THIS to get the instance parameter. You do not code this parameter in your Procedure Interface.