Rewrite the world, with several interdependant changes (but several still WIP)
[ldk-java] / src / main / java / org / ldk / structs / ReplyShortChannelIdsEnd.java
index 9af5948df0ad1ce8207e9e6775de4e1ded00ed5a..947ca85acdab71a920ba860c490f3f792519b24a 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 ReplyShortChannelIdsEnd extends CommonBase {
        ReplyShortChannelIdsEnd(Object _dummy, long ptr) { super(ptr); }
        @Override @SuppressWarnings("deprecation")
@@ -11,39 +14,41 @@ public class ReplyShortChannelIdsEnd extends CommonBase {
                bindings.ReplyShortChannelIdsEnd_free(ptr);
        }
 
-       public ReplyShortChannelIdsEnd(ReplyShortChannelIdsEnd orig) {
-               super(bindings.ReplyShortChannelIdsEnd_clone(orig == null ? 0 : orig.ptr & ~1));
-               this.ptrs_to.add(orig);
+       public static ReplyShortChannelIdsEnd constructor_clone(ReplyShortChannelIdsEnd orig) {
+               long ret = bindings.ReplyShortChannelIdsEnd_clone(orig == null ? 0 : orig.ptr & ~1);
+               ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
+               ret_hu_conv.ptrs_to.add(orig);
+               return ret_hu_conv;
        }
 
-       public byte[] get_chain_hash(ReplyShortChannelIdsEnd this_ptr) {
-               byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1);
-               this.ptrs_to.add(this_ptr);
+       public byte[] get_chain_hash() {
+               byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr);
                return ret;
        }
 
-       public void set_chain_hash(ReplyShortChannelIdsEnd this_ptr, byte[] val) {
-               bindings.ReplyShortChannelIdsEnd_set_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
-               this.ptrs_to.add(this_ptr);
+       public void set_chain_hash(byte[] val) {
+               bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, val);
        }
 
-       public boolean get_full_information(ReplyShortChannelIdsEnd this_ptr) {
-               boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this_ptr == null ? 0 : this_ptr.ptr & ~1);
-               this.ptrs_to.add(this_ptr);
+       public boolean get_full_information() {
+               boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr);
                return ret;
        }
 
-       public void set_full_information(ReplyShortChannelIdsEnd this_ptr, boolean val) {
-               bindings.ReplyShortChannelIdsEnd_set_full_information(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
-               this.ptrs_to.add(this_ptr);
+       public void set_full_information(boolean val) {
+               bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val);
        }
 
-       public ReplyShortChannelIdsEnd(byte[] chain_hash_arg, boolean full_information_arg) {
-               super(bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg));
+       public static ReplyShortChannelIdsEnd constructor_new(byte[] chain_hash_arg, boolean full_information_arg) {
+               long ret = bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg);
+               ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
+               return ret_hu_conv;
        }
 
-       public ReplyShortChannelIdsEnd(byte[] ser) {
-               super(bindings.ReplyShortChannelIdsEnd_read(ser));
+       public static ReplyShortChannelIdsEnd constructor_read(byte[] ser) {
+               long ret = bindings.ReplyShortChannelIdsEnd_read(ser);
+               ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret);
+               return ret_hu_conv;
        }
 
        public byte[] write(ReplyShortChannelIdsEnd obj) {