| 293 | |
| 294 | template<typename ... Args> |
| 295 | jint CallIntMethod(jobject obj, jmethodID methodID, Args ... args) { |
| 296 | jint ji = m_env->CallIntMethod(obj, methodID, args...); |
| 297 | CheckForJavaException(); |
| 298 | return ji; |
| 299 | } |
| 300 | |
| 301 | template<typename ... Args> |
| 302 | jlong CallLongMethod(jobject obj, jmethodID methodID, Args ... args) { |
no outgoing calls
no test coverage detected