If I have a class reference, e.g.jclass classRef = env->FindClass( className );is there any way of getting the className back from the class reference?
[175 byte] By [caffeinea] at [2007-11-26 13:37:16]
You could use the Class.getName() method from the native side.You would have to use GetObjectClass, GetMethodID and CallObjectMethod with your class object reference.Regards