static void n_SaveInBackground_Lcom_parse_SaveCallback_Lcom_parse_ProgressCallback_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0, IntPtr native_p1)
 {
     global::Com.Parse.ParseFile        __this = global::Java.Lang.Object.GetObject <global::Com.Parse.ParseFile> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Parse.SaveCallback     p0     = global::Java.Lang.Object.GetObject <global::Com.Parse.SaveCallback> (native_p0, JniHandleOwnership.DoNotTransfer);
     global::Com.Parse.ProgressCallback p1     = global::Java.Lang.Object.GetObject <global::Com.Parse.ProgressCallback> (native_p1, JniHandleOwnership.DoNotTransfer);
     __this.SaveInBackground(p0, p1);
 }
        public virtual void SaveInBackground(global::Com.Parse.SaveCallback p0, global::Com.Parse.ProgressCallback p1)
        {
            if (id_saveInBackground_Lcom_parse_SaveCallback_Lcom_parse_ProgressCallback_ == IntPtr.Zero)
            {
                id_saveInBackground_Lcom_parse_SaveCallback_Lcom_parse_ProgressCallback_ = JNIEnv.GetMethodID(class_ref, "saveInBackground", "(Lcom/parse/SaveCallback;Lcom/parse/ProgressCallback;)V");
            }

            if (GetType() == ThresholdType)
            {
                JNIEnv.CallVoidMethod(Handle, id_saveInBackground_Lcom_parse_SaveCallback_Lcom_parse_ProgressCallback_, new JValue(p0), new JValue(p1));
            }
            else
            {
                JNIEnv.CallNonvirtualVoidMethod(Handle, ThresholdClass, JNIEnv.GetMethodID(ThresholdClass, "saveInBackground", "(Lcom/parse/SaveCallback;Lcom/parse/ProgressCallback;)V"), new JValue(p0), new JValue(p1));
            }
        }
 static void n_Done_Ljava_lang_Integer_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Parse.ProgressCallback __this = global::Java.Lang.Object.GetObject <global::Com.Parse.ProgressCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Java.Lang.Integer          p0     = global::Java.Lang.Object.GetObject <global::Java.Lang.Integer> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.Done(p0);
 }