returns the value of an instance (nonstatic) field of an object. The field to access is specified by a field ID obtained by calling get_field_id()

Property definitions

jvm $ JniEnv :: get_object_field
	# returns the value of an instance (nonstatic) field of an object. The field to access is specified by a field ID obtained by calling get_field_id()
	fun get_object_field(obj: JavaObject, fieldID: JFieldID): JavaObject `{
		return (*self)->GetObjectField(self, obj, fieldID);
	`}
lib/jvm/jvm.nit:341,2--344,3