Structure of WmRecord:
typedef struct WmRecord {
WmContext *con;
JNIEnv *env;
jobject ref;
jint type;
jsize size1;
jsize size2;
} WmRecord;
WmContext *con
- Invocation context when created.
jobject oRef
- Local reference to this record's Values object.
jint type
- The WmRecord type {RECORD|RECARRAY|STRARRAY|STRTABLE}.
jsize size1
- The first dimension(If its type is Array).
jsize size2 *con
- The second dimension(If its type is Table).
WmRecord *
- WmRecord created in this call.