AndroidJNIHelper.GetMethodIDstatic function GetMethodID (javaClass : IntPtr, methodName : String, signature : String = "", isStatic : boolean = false) : IntPtrParameters
DescriptionScans a particular Java class for a method matching a name and a signature. The signature comparison is done to allow sub-/base-classes of a class types. If no signature is provided the first method with the correct name will be returned. See Also: AndroidJNIHelper.GetSignature, AndroidJNIHelper.GetConstructorID, AndroidJNIHelper.GetFieldID
static function GetMethodID (jclass : System.IntPtr, methodName : String, args : object[], isStatic : boolean) : System.IntPtrParameters
DescriptionGet a JNI method ID based on calling arguments. Generic parameter represents the method return type, and the regular method assumes 'void' return type. Scans a particular Java class for a method matching a signature based on passed arguments. The signature comparison is done to allow for sub-/base-classes of the class types.
static function GetMethodID.<ReturnType> (jclass : System.IntPtr, methodName : String, args : object[], isStatic : boolean) : System.IntPtrParameters
DescriptionGet a JNI method ID based on calling arguments. Generic parameter represents the method return type, and the regular method assumes 'void' return type. Scans a particular Java class for a method matching a signature based on passed arguments. The signature comparison is done to allow for sub-/base-classes of the class types.
|
