public unsafe BaseSpringSystem(global::Com.Facebook.Rebound.SpringLooper p0)
            : base(IntPtr.Zero, JniHandleOwnership.DoNotTransfer)
        {
            if (((global::Java.Lang.Object) this).Handle != IntPtr.Zero)
            {
                return;
            }

            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(p0);
                if (GetType() != typeof(BaseSpringSystem))
                {
                    SetHandle(
                        global::Android.Runtime.JNIEnv.StartCreateInstance(GetType(), "(Lcom/facebook/rebound/SpringLooper;)V", __args),
                        JniHandleOwnership.TransferLocalRef);
                    global::Android.Runtime.JNIEnv.FinishCreateInstance(((global::Java.Lang.Object) this).Handle, "(Lcom/facebook/rebound/SpringLooper;)V", __args);
                    return;
                }

                if (id_ctor_Lcom_facebook_rebound_SpringLooper_ == IntPtr.Zero)
                {
                    id_ctor_Lcom_facebook_rebound_SpringLooper_ = JNIEnv.GetMethodID(class_ref, "<init>", "(Lcom/facebook/rebound/SpringLooper;)V");
                }
                SetHandle(
                    global::Android.Runtime.JNIEnv.StartCreateInstance(class_ref, id_ctor_Lcom_facebook_rebound_SpringLooper_, __args),
                    JniHandleOwnership.TransferLocalRef);
                JNIEnv.FinishCreateInstance(((global::Java.Lang.Object) this).Handle, class_ref, id_ctor_Lcom_facebook_rebound_SpringLooper_, __args);
            } finally {
            }
        }
 static void n_SetSpringSystem_Lcom_facebook_rebound_BaseSpringSystem_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Facebook.Rebound.SpringLooper     __this = global::Java.Lang.Object.GetObject <global::Com.Facebook.Rebound.SpringLooper> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Facebook.Rebound.BaseSpringSystem p0     = global::Java.Lang.Object.GetObject <global::Com.Facebook.Rebound.BaseSpringSystem> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.SetSpringSystem(p0);
 }
 static void n_Stop(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Facebook.Rebound.SpringLooper __this = global::Java.Lang.Object.GetObject <global::Com.Facebook.Rebound.SpringLooper> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Stop();
 }