| 47 | } |
| 48 | |
| 49 | jmethodID JEnv::GetStaticMethodID(jclass clazz, const string &name, const string &sig) { |
| 50 | jmethodID mid = m_env->GetStaticMethodID(clazz, name.c_str(), sig.c_str()); |
| 51 | CheckForJavaException(); |
| 52 | return mid; |
| 53 | } |
| 54 | |
| 55 | jfieldID JEnv::GetFieldID(jclass clazz, const string &name, const string &sig) { |
| 56 | jfieldID fid = m_env->GetFieldID(clazz, name.c_str(), sig.c_str()); |
no outgoing calls