| 54 | } |
| 55 | |
| 56 | jstring JNICALL Java_i2jrt_ORB_object_1to_1string(JNIEnv *jni, jobject jThis, |
| 57 | jobject obj) |
| 58 | { |
| 59 | CORBA::Object_ptr tao_obj = recoverTaoObject(jni, obj); |
| 60 | |
| 61 | try { |
| 62 | const char *str = recoverTaoORB(jni, jThis)->object_to_string(tao_obj); |
| 63 | return jni->NewStringUTF(str); |
| 64 | |
| 65 | } catch (const CORBA::SystemException &se) { |
| 66 | throw_java_exception(jni, se); |
| 67 | } |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | jobject JNICALL Java_i2jrt_ORB_string_1to_1object(JNIEnv *jni, jobject jThis, |
| 73 | jstring str) |
nothing calls this directly
no test coverage detected