| 465 | } |
| 466 | |
| 467 | jobject JEnv::GetObjectArrayElement(jobjectArray array, jsize index) { |
| 468 | jobject jo = m_env->GetObjectArrayElement(array, index); |
| 469 | CheckForJavaException(); |
| 470 | return jo; |
| 471 | } |
| 472 | |
| 473 | void JEnv::SetObjectArrayElement(jobjectArray array, jsize index, jobject value) { |
| 474 | m_env->SetObjectArrayElement(array, index, value); |
no outgoing calls
no test coverage detected