Example #1
0
 static void n_SetSomeObjectPropertyArray_arrayI(IntPtr jnienv, IntPtr native__this, IntPtr native_newvalue)
 {
     global::Xamarin.Test.SomeObject2  __this   = global::Java.Lang.Object.GetObject <global::Xamarin.Test.SomeObject2> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Xamarin.Test.SomeValues[] newvalue = (global::Xamarin.Test.SomeValues[])JNIEnv.GetArray(native_newvalue, JniHandleOwnership.DoNotTransfer, typeof(global::Xamarin.Test.SomeValues));
     __this.SetSomeObjectPropertyArray(newvalue);
     if (newvalue != null)
     {
         JNIEnv.CopyArray(newvalue, native_newvalue);
     }
 }
 static void n_Close(IntPtr jnienv, IntPtr native__this)
 {
     global::Xamarin.Test.SomeObject2 __this = global::Java.Lang.Object.GetObject <global::Xamarin.Test.SomeObject2> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Close();
 }
Example #3
0
 static void n_SetSomeObjectProperty_I(IntPtr jnienv, IntPtr native__this, int native_newvalue)
 {
     global::Xamarin.Test.SomeObject2 __this   = global::Java.Lang.Object.GetObject <global::Xamarin.Test.SomeObject2> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Xamarin.Test.SomeValues  newvalue = (global::Xamarin.Test.SomeValues)native_newvalue;
     __this.SomeObjectProperty = newvalue;
 }
Example #4
0
 static int n_GetSomeObjectProperty(IntPtr jnienv, IntPtr native__this)
 {
     global::Xamarin.Test.SomeObject2 __this = global::Java.Lang.Object.GetObject <global::Xamarin.Test.SomeObject2> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return((int)__this.SomeObjectProperty);
 }
Example #5
0
 static IntPtr n_GetSomeObjectPropertyArray(IntPtr jnienv, IntPtr native__this)
 {
     global::Xamarin.Test.SomeObject2 __this = global::Java.Lang.Object.GetObject <global::Xamarin.Test.SomeObject2> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewArray(__this.GetSomeObjectPropertyArray()));
 }