jvmti jobject
Is is possible to obtain a jobject directly from jvmti (without involving any java class) and then call
jvmtiError
SetTag(jvmtiEnv* env,
jobject object,
jlong tag)
If so, how do you obtain a jobject via jvmti? --Or must the jobject be passed in from a java call via jni?

