How to type cast from AccessibleContext to jobject
I have an AccessibleContext and type cast it to jobject:
long accID;
jobject obj = (jobject) accID ;
Type casting seems to be successfull but I cannot get class ofobj :
cls = env->GetObjectClass(obj); //JNIEnv* env
Please help me to fix this one. I appreciate your response. Thanks

