| 459 | } |
| 460 | |
| 461 | jobjectArray JEnv::NewObjectArray(jsize length, jclass elementClass, jobject initialElement) { |
| 462 | jobjectArray joa = m_env->NewObjectArray(length, elementClass, initialElement); |
| 463 | CheckForJavaException(); |
| 464 | return joa; |
| 465 | } |
| 466 | |
| 467 | jobject JEnv::GetObjectArrayElement(jobjectArray array, jsize index) { |
| 468 | jobject jo = m_env->GetObjectArrayElement(array, index); |
no outgoing calls
no test coverage detected