| 453 | } |
| 454 | |
| 455 | jstring JEnv::NewStringUTF(const char *bytes) { |
| 456 | jstring jst = m_env->NewStringUTF(bytes); |
| 457 | CheckForJavaException(); |
| 458 | return jst; |
| 459 | } |
| 460 | |
| 461 | jobjectArray JEnv::NewObjectArray(jsize length, jclass elementClass, jobject initialElement) { |
| 462 | jobjectArray joa = m_env->NewObjectArray(length, elementClass, initialElement); |
no outgoing calls