[Java] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / src / main / java / org / ldk / structs / Result_ChannelCounterpartyDecodeErrorZ.java
index 649511412237d1d94e977fcac610572ac0c2ba4a..974986ca399fa7e99e46f608f217d1a5fc7e2591 100644 (file)
@@ -13,6 +13,10 @@ public class Result_ChannelCounterpartyDecodeErrorZ extends CommonBase {
                if (ptr != 0) { bindings.CResult_ChannelCounterpartyDecodeErrorZ_free(ptr); } super.finalize();
        }
 
+       protected void force_free() {
+               if (ptr != 0) { bindings.CResult_ChannelCounterpartyDecodeErrorZ_free(ptr); ptr = 0; }
+       }
+
        static Result_ChannelCounterpartyDecodeErrorZ constr_from_ptr(long ptr) {
                if (bindings.CResult_ChannelCounterpartyDecodeErrorZ_is_ok(ptr)) {
                        return new Result_ChannelCounterpartyDecodeErrorZ_OK(null, ptr);
@@ -25,8 +29,8 @@ public class Result_ChannelCounterpartyDecodeErrorZ extends CommonBase {
                private Result_ChannelCounterpartyDecodeErrorZ_OK(Object _dummy, long ptr) {
                        super(_dummy, ptr);
                        long res = bindings.CResult_ChannelCounterpartyDecodeErrorZ_get_ok(ptr);
-                       ChannelCounterparty res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new ChannelCounterparty(null, res); }
-                       res_hu_conv.ptrs_to.add(this);
+                       org.ldk.structs.ChannelCounterparty res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.ChannelCounterparty(null, res); }
+                       if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
                        this.res = res_hu_conv;
                }
        }
@@ -36,8 +40,8 @@ public class Result_ChannelCounterpartyDecodeErrorZ extends CommonBase {
                private Result_ChannelCounterpartyDecodeErrorZ_Err(Object _dummy, long ptr) {
                        super(_dummy, ptr);
                        long err = bindings.CResult_ChannelCounterpartyDecodeErrorZ_get_err(ptr);
-                       DecodeError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new DecodeError(null, err); }
-                       err_hu_conv.ptrs_to.add(this);
+                       org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
+                       if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
                        this.err = err_hu_conv;
                }
        }
@@ -45,22 +49,24 @@ public class Result_ChannelCounterpartyDecodeErrorZ extends CommonBase {
        /**
         * Creates a new CResult_ChannelCounterpartyDecodeErrorZ in the success state.
         */
-       public static Result_ChannelCounterpartyDecodeErrorZ ok(ChannelCounterparty o) {
-               long ret = bindings.CResult_ChannelCounterpartyDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
+       public static Result_ChannelCounterpartyDecodeErrorZ ok(org.ldk.structs.ChannelCounterparty o) {
+               long ret = bindings.CResult_ChannelCounterpartyDecodeErrorZ_ok(o.ptr);
                Reference.reachabilityFence(o);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ChannelCounterpartyDecodeErrorZ ret_hu_conv = Result_ChannelCounterpartyDecodeErrorZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
                return ret_hu_conv;
        }
 
        /**
         * Creates a new CResult_ChannelCounterpartyDecodeErrorZ in the error state.
         */
-       public static Result_ChannelCounterpartyDecodeErrorZ err(DecodeError e) {
-               long ret = bindings.CResult_ChannelCounterpartyDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
+       public static Result_ChannelCounterpartyDecodeErrorZ err(org.ldk.structs.DecodeError e) {
+               long ret = bindings.CResult_ChannelCounterpartyDecodeErrorZ_err(e.ptr);
                Reference.reachabilityFence(e);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ChannelCounterpartyDecodeErrorZ ret_hu_conv = Result_ChannelCounterpartyDecodeErrorZ.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
                return ret_hu_conv;
        }