Set<type>Field Routines - SetFloatField
void
Set<type>Field(JNIEnv *env, jobject obj, jfieldID fieldID,
NativeType value);
This family of accessor routines sets the value of an instance (nonstatic) field of an object. The field to access is specified by a field ID obtained by calling
GetFieldID()
. (SetFloatField)
The following table describes the Set<type>Field routine name and value type. You should replace type in Set<type>Field with the Java type of the field, or use one of the actual routine names from the table, and replace NativeType with the corresponding native type for that routine.
Table 4-2a Set<type>Field Family of Accessor Routines
LINKAGE:
Indices in the JNIEnv interface function table.
Table 4-2b Set<type>Field Family of Accessor Routines
PARAMETERS:
env
: the JNI interface pointer.obj
: a Java object (must not be NULL
).fieldID
: a valid field ID.value
: the new value of the field.
Example - SetFloatField
JNIEXPORT jobject JNICALL
Java_org_orman_mapper_Model_fieldSetFloat(JNIEnv * env, jobject obj, jobject model, jstring field_name, jstring field_type, jfloat value, jclass clazz)
{
const char* utf_string_name = (*env)->GetStringUTFChars (env, field_name, 0);
const char* utf_string_type = (*env)->GetStringUTFChars (env, field_type, 0);
jfieldID id = (*env)->GetFieldID(env, clazz, utf_string_name, utf_string_type);
(*env)->SetFloatField(env, model, id, value);
return model;
}