| 831 | } |
| 832 | |
| 833 | jclass JEnv::GetObjectClass(jobject obj) { |
| 834 | jclass jcl = m_env->GetObjectClass(obj); |
| 835 | CheckForJavaException(); |
| 836 | return jcl; |
| 837 | } |
| 838 | |
| 839 | jsize JEnv::GetArrayLength(jarray array) { |
| 840 | jsize jsz = m_env->GetArrayLength(array); |
no outgoing calls
no test coverage detected