| 537 | } |
| 538 | |
| 539 | jboolean JEnv::IsInstanceOf(jobject obj, jclass clazz) { |
| 540 | jboolean jbl = m_env->IsInstanceOf(obj, clazz); |
| 541 | CheckForJavaException(); |
| 542 | return jbl; |
| 543 | } |
| 544 | |
| 545 | jobjectRefType JEnv::GetObjectRefType(jobject obj) { |
| 546 | jobjectRefType ort = m_env->GetObjectRefType(obj); |
no outgoing calls
no test coverage detected