X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelReestablish.java;h=bd5fe0eae6dd9e44eb6d0831d7513770c9c0d830;hb=17113550a5fefab21f39f27fbfe02646b8db53ae;hp=17dbf2866b737de0faf0805f32166a41a17b022f;hpb=90f8a21c87ba652884d5b94404b9b24a18f0cefc;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelReestablish.java b/src/main/java/org/ldk/structs/ChannelReestablish.java index 17dbf286..bd5fe0ea 100644 --- a/src/main/java/org/ldk/structs/ChannelReestablish.java +++ b/src/main/java/org/ldk/structs/ChannelReestablish.java @@ -5,6 +5,10 @@ import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; + +/** + * A channel_reestablish message to be sent or received from a peer + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ChannelReestablish extends CommonBase { ChannelReestablish(Object _dummy, long ptr) { super(ptr); } @@ -14,48 +18,75 @@ public class ChannelReestablish extends CommonBase { if (ptr != 0) { bindings.ChannelReestablish_free(ptr); } } - public static ChannelReestablish constructor_clone(ChannelReestablish orig) { - long ret = bindings.ChannelReestablish_clone(orig == null ? 0 : orig.ptr & ~1); - ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret); - ret_hu_conv.ptrs_to.add(orig); - return ret_hu_conv; - } - + /** + * The channel ID + */ public byte[] get_channel_id() { byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr); return ret; } + /** + * The channel ID + */ public void set_channel_id(byte[] val) { bindings.ChannelReestablish_set_channel_id(this.ptr, val); } + /** + * The next commitment number for the sender + */ public long get_next_local_commitment_number() { long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr); return ret; } + /** + * The next commitment number for the sender + */ public void set_next_local_commitment_number(long val) { bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val); } + /** + * The next commitment number for the recipient + */ public long get_next_remote_commitment_number() { long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr); return ret; } + /** + * The next commitment number for the recipient + */ public void set_next_remote_commitment_number(long val) { bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val); } + /** + * Creates a copy of the ChannelReestablish + */ + 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; + } + + /** + * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read + */ public byte[] write() { byte[] ret = bindings.ChannelReestablish_write(this.ptr); return ret; } - public static ChannelReestablish constructor_read(byte[] ser) { + /** + * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write + */ + public static Result_ChannelReestablishDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.ChannelReestablish_read(ser); - ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret); + Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }