| 59 | } |
| 60 | |
| 61 | jfieldID JEnv::GetStaticFieldID(jclass clazz, const string &name, const string &sig) { |
| 62 | jfieldID fid = m_env->GetStaticFieldID(clazz, name.c_str(), sig.c_str()); |
| 63 | CheckForJavaException(); |
| 64 | return fid; |
| 65 | } |
| 66 | |
| 67 | void JEnv::CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue *args) { |
| 68 | m_env->CallStaticVoidMethodA(clazz, methodID, args); |
no outgoing calls
no test coverage detected