MCPcopy Create free account
hub / github.com/Firebasky/Java / CallBooleanMethod

Method CallBooleanMethod

JNI/jni/jni.h:914–922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

912 }
913
914 jboolean CallBooleanMethod(jobject obj,
915 jmethodID methodID, ...) {
916 va_list args;
917 jboolean result;
918 va_start(args,methodID);
919 result = functions->CallBooleanMethodV(this,obj,methodID,args);
920 va_end(args);
921 return result;
922 }
923 jboolean CallBooleanMethodV(jobject obj, jmethodID methodID,
924 va_list args) {
925 return functions->CallBooleanMethodV(this,obj,methodID,args);

Callers

nothing calls this directly

Calls 1

CallBooleanMethodVMethod · 0.45

Tested by

no test coverage detected