static void n_Done_Lcom_parse_ParseObject_Lcom_parse_ParseException_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0, IntPtr native_p1)
 {
     global::Com.Parse.RefreshCallback __this = global::Java.Lang.Object.GetObject <global::Com.Parse.RefreshCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Parse.ParseObject     p0     = global::Java.Lang.Object.GetObject <global::Com.Parse.ParseObject> (native_p0, JniHandleOwnership.DoNotTransfer);
     global::Com.Parse.ParseException  p1     = global::Java.Lang.Object.GetObject <global::Com.Parse.ParseException> (native_p1, JniHandleOwnership.DoNotTransfer);
     __this.Done(p0, p1);
 }
 public override void Done(global::Com.Parse.ParseObject p0, global::Com.Parse.ParseException p1)
 {
     if (id_done_Lcom_parse_ParseObject_Lcom_parse_ParseException_ == IntPtr.Zero)
     {
         id_done_Lcom_parse_ParseObject_Lcom_parse_ParseException_ = JNIEnv.GetMethodID(class_ref, "done", "(Lcom/parse/ParseObject;Lcom/parse/ParseException;)V");
     }
     JNIEnv.CallVoidMethod(Handle, id_done_Lcom_parse_ParseObject_Lcom_parse_ParseException_, new JValue(p0), new JValue(p1));
 }
Beispiel #3
0
        public static global::System.Collections.Generic.ICollection <string> KeySet(global::Com.Parse.ParseObject p0)
        {
            if (id_keySet_Lcom_parse_ParseObject_ == IntPtr.Zero)
            {
                id_keySet_Lcom_parse_ParseObject_ = JNIEnv.GetStaticMethodID(class_ref, "keySet", "(Lcom/parse/ParseObject;)Ljava/util/Set;");
            }
            global::System.Collections.Generic.ICollection <string> __ret = global::Android.Runtime.JavaSet <string> .FromJniHandle(JNIEnv.CallStaticObjectMethod(class_ref, id_keySet_Lcom_parse_ParseObject_, new JValue(p0)), JniHandleOwnership.TransferLocalRef);

            return(__ret);
        }
Beispiel #4
0
        public static void SaveObjectToDisk(global::Com.Parse.ParseObject p0, global::Android.Content.Context p1, string p2)
        {
            if (id_saveObjectToDisk_Lcom_parse_ParseObject_Landroid_content_Context_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_saveObjectToDisk_Lcom_parse_ParseObject_Landroid_content_Context_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "saveObjectToDisk", "(Lcom/parse/ParseObject;Landroid/content/Context;Ljava/lang/String;)V");
            }
            IntPtr native_p2 = JNIEnv.NewString(p2);

            JNIEnv.CallStaticVoidMethod(class_ref, id_saveObjectToDisk_Lcom_parse_ParseObject_Landroid_content_Context_Ljava_lang_String_, new JValue(p0), new JValue(p1), new JValue(native_p2));
            JNIEnv.DeleteLocalRef(native_p2);
        }
Beispiel #5
0
        public static global::Com.Parse.ParseObject GetObjectFromDisk(global::Android.Content.Context p0, string p1)
        {
            if (id_getObjectFromDisk_Landroid_content_Context_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_getObjectFromDisk_Landroid_content_Context_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "getObjectFromDisk", "(Landroid/content/Context;Ljava/lang/String;)Lcom/parse/ParseObject;");
            }
            IntPtr native_p1 = JNIEnv.NewString(p1);

            global::Com.Parse.ParseObject __ret = global::Java.Lang.Object.GetObject <global::Com.Parse.ParseObject> (JNIEnv.CallStaticObjectMethod(class_ref, id_getObjectFromDisk_Landroid_content_Context_Ljava_lang_String_, new JValue(p0), new JValue(native_p1)), JniHandleOwnership.TransferLocalRef);
            JNIEnv.DeleteLocalRef(native_p1);
            return(__ret);
        }
 public abstract void Done(global::Com.Parse.ParseObject p0, global::Com.Parse.ParseException p1);