Update auto-generated bindings with new upstream.
[ldk-java] / src / main / java / org / ldk / structs / HTLCUpdate.java
index 9ffcbd0fae5a254fefbfa0ea514635e2259eb4b5..57f94ec2202165b714d91a7712ce81070e476f1c 100644 (file)
@@ -2,28 +2,34 @@ package org.ldk.structs;
 
 import org.ldk.impl.bindings;
 import org.ldk.enums.*;
+import org.ldk.util.*;
+import java.util.Arrays;
 
+@SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class HTLCUpdate extends CommonBase {
        HTLCUpdate(Object _dummy, long ptr) { super(ptr); }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
                super.finalize();
-               bindings.HTLCUpdate_free(ptr);
+               if (ptr != 0) { bindings.HTLCUpdate_free(ptr); }
        }
 
-       public HTLCUpdate(HTLCUpdate orig) {
-               super(bindings.HTLCUpdate_clone(orig == null ? 0 : orig.ptr & ~1));
-               this.ptrs_to.add(orig);
+       public HTLCUpdate clone() {
+               long ret = bindings.HTLCUpdate_clone(this.ptr);
+               HTLCUpdate ret_hu_conv = new HTLCUpdate(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
        }
 
-       public byte[] write(HTLCUpdate obj) {
-               byte[] ret = bindings.HTLCUpdate_write(obj == null ? 0 : obj.ptr & ~1);
-               this.ptrs_to.add(obj);
+       public byte[] write() {
+               byte[] ret = bindings.HTLCUpdate_write(this.ptr);
                return ret;
        }
 
-       public HTLCUpdate(byte[] ser) {
-               super(bindings.HTLCUpdate_read(ser));
+       public static Result_HTLCUpdateDecodeErrorZ constructor_read(byte[] ser) {
+               long ret = bindings.HTLCUpdate_read(ser);
+               Result_HTLCUpdateDecodeErrorZ ret_hu_conv = Result_HTLCUpdateDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
        }
 
 }