Bindings updates
[ldk-java] / src / main / java / org / ldk / structs / ChannelReestablish.java
index ee92dc0f266b20cfe84b669032cd453017e97ea0..9df4872905c1fa8da029b53524f79e22149b8948 100644 (file)
@@ -2,55 +2,61 @@ 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 ChannelReestablish extends CommonBase {
        ChannelReestablish(Object _dummy, long ptr) { super(ptr); }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
-               bindings.ChannelReestablish_free(ptr); super.finalize();
+               super.finalize();
+               if (ptr != 0) { bindings.ChannelReestablish_free(ptr); }
        }
 
-       public ChannelReestablish(ChannelReestablish orig) {
-               super(bindings.ChannelReestablish_clone(orig.ptr & ~1));
-               this.ptrs_to.add(orig);
+       public ChannelReestablish clone() {
+               long ret = bindings.ChannelReestablish_clone(this.ptr);
+               ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
        }
 
-       public byte[] get_channel_id(ChannelReestablish this_ptr) {
-               byte[] ret = bindings.ChannelReestablish_get_channel_id(this_ptr.ptr & ~1);
-               this.ptrs_to.add(this_ptr);
+       public byte[] get_channel_id() {
+               byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
                return ret;
        }
 
-       public void set_channel_id(ChannelReestablish this_ptr, byte[] val) {
-               bindings.ChannelReestablish_set_channel_id(this_ptr.ptr & ~1, val);
-               this.ptrs_to.add(this_ptr);
+       public void set_channel_id(byte[] val) {
+               bindings.ChannelReestablish_set_channel_id(this.ptr, val);
        }
 
-       public long get_next_local_commitment_number(ChannelReestablish this_ptr) {
-               long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this_ptr.ptr & ~1);
-               this.ptrs_to.add(this_ptr);
+       public long get_next_local_commitment_number() {
+               long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr);
                return ret;
        }
 
-       public void set_next_local_commitment_number(ChannelReestablish this_ptr, long val) {
-               bindings.ChannelReestablish_set_next_local_commitment_number(this_ptr.ptr & ~1, val);
-               this.ptrs_to.add(this_ptr);
+       public void set_next_local_commitment_number(long val) {
+               bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val);
        }
 
-       public long get_next_remote_commitment_number(ChannelReestablish this_ptr) {
-               long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this_ptr.ptr & ~1);
-               this.ptrs_to.add(this_ptr);
+       public long get_next_remote_commitment_number() {
+               long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
                return ret;
        }
 
-       public void set_next_remote_commitment_number(ChannelReestablish this_ptr, long val) {
-               bindings.ChannelReestablish_set_next_remote_commitment_number(this_ptr.ptr & ~1, val);
-               this.ptrs_to.add(this_ptr);
+       public void set_next_remote_commitment_number(long val) {
+               bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val);
        }
 
-       // Skipped ChannelReestablish_write
-       public ChannelReestablish(byte[] ser) {
-               super(bindings.ChannelReestablish_read(ser));
+       public byte[] write() {
+               byte[] ret = bindings.ChannelReestablish_write(this.ptr);
+               return ret;
+       }
+
+       public static Result_ChannelReestablishDecodeErrorZ constructor_read(byte[] ser) {
+               long ret = bindings.ChannelReestablish_read(ser);
+               Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
        }
 
 }