Ejemplo n.º 1
0
        static double n_Value_Ljava_lang_String_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty __this = global::Java.Lang.Object.GetObject <global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            string p0    = JNIEnv.GetString(native_p0, JniHandleOwnership.DoNotTransfer);
            double __ret = __this.Value(p0);

            return(__ret);
        }
Ejemplo n.º 2
0
        static IntPtr n_NormalizedProfile_Ljava_lang_String_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty __this = global::Java.Lang.Object.GetObject <global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            string p0    = JNIEnv.GetString(native_p0, JniHandleOwnership.DoNotTransfer);
            IntPtr __ret = JNIEnv.NewArray(__this.NormalizedProfile(p0));

            return(__ret);
        }
Ejemplo n.º 3
0
        public static unsafe global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty Create(string p0)
        {
            if (id_create_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_create_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "create", "(Ljava/lang/String;)Lbe/abeel/bioinformatics/dnaproperties/DNAProperty;");
            }
            IntPtr native_p0 = JNIEnv.NewString(p0);

            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(native_p0);
                global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty __ret = global::Java.Lang.Object.GetObject <global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty> (JNIEnv.CallStaticObjectMethod(class_ref, id_create_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p0);
            }
        }
Ejemplo n.º 4
0
 static int n_Length(IntPtr jnienv, IntPtr native__this)
 {
     global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty __this = global::Java.Lang.Object.GetObject <global::BE.Abeel.Bioinformatics.Dnaproperties.DNAProperty> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.Length());
 }