static void n_Start_Ljava_util_Timer_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            RecordReaper __this = Java.Lang.Object.GetObject <RecordReaper> (native__this, JniHandleOwnership.DoNotTransfer);

            global::Java.Util.Timer p0 = Java.Lang.Object.GetObject <global::Java.Util.Timer> (native_p0, JniHandleOwnership.DoNotTransfer);
            __this.Start(p0);
        }
 public override void Start(global::Java.Util.Timer p0)
 {
     if (id_start_Ljava_util_Timer_ == IntPtr.Zero)
     {
         id_start_Ljava_util_Timer_ = JNIEnv.GetMethodID(class_ref, "start", "(Ljava/util/Timer;)V");
     }
     JNIEnv.CallVoidMethod(Handle, id_start_Ljava_util_Timer_, new JValue(p0));
 }
		public override void Start (global::Java.Util.Timer p0)
		{
			if (id_start_Ljava_util_Timer_ == IntPtr.Zero)
				id_start_Ljava_util_Timer_ = JNIEnv.GetMethodID (class_ref, "start", "(Ljava/util/Timer;)V");

			if (GetType () == ThresholdType)
				JNIEnv.CallVoidMethod  (Handle, id_start_Ljava_util_Timer_, new JValue (p0));
			else
				JNIEnv.CallNonvirtualVoidMethod  (Handle, ThresholdClass, id_start_Ljava_util_Timer_, new JValue (p0));
		}
Exemple #4
0
 public abstract void Start(global::Java.Util.Timer p0);