Getting a class name from a class reference

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]
# 1
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
jfbrierea at 2007-7-7 22:23:56 > top of Java-index,Java HotSpot Virtual Machine,Specifications...