X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingLocked.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingLocked.java;h=0b8188c1fcf060fc7a0aa40ac8d033f851b9674d;hb=17113550a5fefab21f39f27fbfe02646b8db53ae;hp=0462f1a07c8326c9fee3e0823999bac936256687;hpb=d69a40d071871d3c0e4160744202c6e85941a4cc;p=ldk-java diff --git a/src/main/java/org/ldk/structs/FundingLocked.java b/src/main/java/org/ldk/structs/FundingLocked.java index 0462f1a0..0b8188c1 100644 --- a/src/main/java/org/ldk/structs/FundingLocked.java +++ b/src/main/java/org/ldk/structs/FundingLocked.java @@ -5,6 +5,10 @@ import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; + +/** + * A funding_locked message to be sent or received from a peer + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class FundingLocked extends CommonBase { FundingLocked(Object _dummy, long ptr) { super(ptr); } @@ -14,24 +18,39 @@ public class FundingLocked extends CommonBase { if (ptr != 0) { bindings.FundingLocked_free(ptr); } } + /** + * The channel ID + */ public byte[] get_channel_id() { byte[] ret = bindings.FundingLocked_get_channel_id(this.ptr); return ret; } + /** + * The channel ID + */ public void set_channel_id(byte[] val) { bindings.FundingLocked_set_channel_id(this.ptr, val); } + /** + * The per-commitment point of the second commitment transaction + */ public byte[] get_next_per_commitment_point() { byte[] ret = bindings.FundingLocked_get_next_per_commitment_point(this.ptr); return ret; } + /** + * The per-commitment point of the second commitment transaction + */ public void set_next_per_commitment_point(byte[] val) { bindings.FundingLocked_set_next_per_commitment_point(this.ptr, val); } + /** + * Constructs a new FundingLocked given each field + */ public static FundingLocked constructor_new(byte[] channel_id_arg, byte[] next_per_commitment_point_arg) { long ret = bindings.FundingLocked_new(channel_id_arg, next_per_commitment_point_arg); FundingLocked ret_hu_conv = new FundingLocked(null, ret); @@ -39,6 +58,9 @@ public class FundingLocked extends CommonBase { return ret_hu_conv; } + /** + * Creates a copy of the FundingLocked + */ public FundingLocked clone() { long ret = bindings.FundingLocked_clone(this.ptr); FundingLocked ret_hu_conv = new FundingLocked(null, ret); @@ -46,11 +68,17 @@ public class FundingLocked extends CommonBase { return ret_hu_conv; } + /** + * Serialize the FundingLocked object into a byte array which can be read by FundingLocked_read + */ public byte[] write() { byte[] ret = bindings.FundingLocked_write(this.ptr); return ret; } + /** + * Read a FundingLocked from a byte array, created by FundingLocked_write + */ public static Result_FundingLockedDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.FundingLocked_read(ser); Result_FundingLockedDecodeErrorZ ret_hu_conv = Result_FundingLockedDecodeErrorZ.constr_from_ptr(ret);