Rewrite the world, with several interdependant changes (but several still WIP)
[ldk-java] / src / main / java / org / ldk / structs / HTLCUpdate.java
index 9ffcbd0fae5a254fefbfa0ea514635e2259eb4b5..008ca802d19095baad392c0ddb168220adee456e 100644 (file)
@@ -2,7 +2,10 @@ 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")
@@ -11,9 +14,11 @@ public class HTLCUpdate extends CommonBase {
                bindings.HTLCUpdate_free(ptr);
        }
 
-       public HTLCUpdate(HTLCUpdate orig) {
-               super(bindings.HTLCUpdate_clone(orig == null ? 0 : orig.ptr & ~1));
-               this.ptrs_to.add(orig);
+       public static HTLCUpdate constructor_clone(HTLCUpdate orig) {
+               long ret = bindings.HTLCUpdate_clone(orig == null ? 0 : orig.ptr & ~1);
+               HTLCUpdate ret_hu_conv = new HTLCUpdate(null, ret);
+               ret_hu_conv.ptrs_to.add(orig);
+               return ret_hu_conv;
        }
 
        public byte[] write(HTLCUpdate obj) {
@@ -22,8 +27,10 @@ public class HTLCUpdate extends CommonBase {
                return ret;
        }
 
-       public HTLCUpdate(byte[] ser) {
-               super(bindings.HTLCUpdate_read(ser));
+       public static HTLCUpdate constructor_read(byte[] ser) {
+               long ret = bindings.HTLCUpdate_read(ser);
+               HTLCUpdate ret_hu_conv = new HTLCUpdate(null, ret);
+               return ret_hu_conv;
        }
 
 }