static void n_SetPoints_Ljava_util_List_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            var p0 = global::Android.Runtime.JavaList <global::Com.Amap.Api.Maps2d.Model.LatLng> .FromJniHandle(native_p0, JniHandleOwnership.DoNotTransfer);

            __this.Points = p0;
        }
        static bool n_EqualsRemote_Lcom_amap_api_interfaces_IOverlay_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            global::Com.Amap.Api.Interfaces.IOverlay  p0     = (global::Com.Amap.Api.Interfaces.IOverlay)global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (native_p0, JniHandleOwnership.DoNotTransfer);
            bool __ret = __this.EqualsRemote(p0);

            return(__ret);
        }
        public unsafe Polyline(global::Com.Amap.Api.Interfaces.IPolyline p0)
            : base(IntPtr.Zero, JniHandleOwnership.DoNotTransfer)
        {
            const string __id = "(Lcom/amap/api/interfaces/IPolyline;)V";

            if (((global::Java.Lang.Object) this).Handle != IntPtr.Zero)
            {
                return;
            }

            try {
                JniArgumentValue *__args = stackalloc JniArgumentValue [1];
                __args [0] = new JniArgumentValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
                var __r = _members.InstanceMethods.StartCreateInstance(__id, ((object)this).GetType(), __args);
                SetHandle(__r.Handle, JniHandleOwnership.TransferLocalRef);
                _members.InstanceMethods.FinishCreateInstance(__id, this, __args);
            } finally {
            }
        }
 static void n_Remove(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Remove();
 }
 static int n_HashCodeRemote(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.HashCodeRemote());
 }
 static void n_SetZIndex_F(IntPtr jnienv, IntPtr native__this, float p0)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.ZIndex = p0;
 }
 static float n_GetZIndex(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.ZIndex);
 }
 static void n_SetVisible_Z(IntPtr jnienv, IntPtr native__this, bool p0)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Visible = p0;
 }
 static bool n_IsVisible(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.Visible);
 }
 static IntPtr n_GetId(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewString(__this.Id));
 }
 static IntPtr n_GetPoints(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IPolyline __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IPolyline> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(global::Android.Runtime.JavaList <global::Com.Amap.Api.Maps2d.Model.LatLng> .ToLocalJniHandle(__this.Points));
 }