| 251 | |
| 252 | template<typename ... Args> |
| 253 | jboolean CallStaticBooleanMethod(jclass clazz, jmethodID methodID, Args ... args) { |
| 254 | jboolean jbl = m_env->CallStaticBooleanMethod(clazz, methodID, args...); |
| 255 | CheckForJavaException(); |
| 256 | return jbl; |
| 257 | } |
| 258 | |
| 259 | template<typename ... Args> |
| 260 | jobject CallObjectMethod(jobject obj, jmethodID methodID, Args ... args) { |
no outgoing calls
no test coverage detected