AndroidJNI.SetObjectField
static function SetObjectField(obj: IntPtr, fieldID: IntPtr, val: IntPtr): void;
static void SetObjectField(IntPtr obj, IntPtr fieldID, IntPtr val);
static def SetObjectField(obj as IntPtr, fieldID as IntPtr, val as IntPtr) as void
Description

This function sets the value of an instance (nonstatic) field of an object.

The value to set is a reference to either a java.lang.Object, or a subclass thereof.

See Also: Java Native Interface Specification (Oracle)