| 244 | |
| 245 | template<typename ... Args> |
| 246 | jobject CallStaticObjectMethod(jclass clazz, jmethodID methodID, Args ... args) { |
| 247 | jobject jo = m_env->CallStaticObjectMethod(clazz, methodID, args...); |
| 248 | CheckForJavaException(); |
| 249 | return jo; |
| 250 | } |
| 251 | |
| 252 | template<typename ... Args> |
| 253 | jboolean CallStaticBooleanMethod(jclass clazz, jmethodID methodID, Args ... args) { |
no outgoing calls