| 258 | |
| 259 | template<typename ... Args> |
| 260 | jobject CallObjectMethod(jobject obj, jmethodID methodID, Args ... args) { |
| 261 | jobject jo = m_env->CallObjectMethod(obj, methodID, args...); |
| 262 | CheckForJavaException(); |
| 263 | return jo; |
| 264 | } |
| 265 | |
| 266 | template<typename ... Args> |
| 267 | jboolean CallBooleanMethod(jobject obj, jmethodID methodID, Args ... args) { |
no outgoing calls
no test coverage detected