X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingLocked.java;h=0b8188c1fcf060fc7a0aa40ac8d033f851b9674d;hb=502589786542336214b743a101b29e9f69e598c9;hp=1cf7d7ac492064421b23077d5082af9fd3891da9;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/FundingLocked.java b/src/main/java/org/ldk/structs/FundingLocked.java index 1cf7d7ac..0b8188c1 100644 --- a/src/main/java/org/ldk/structs/FundingLocked.java +++ b/src/main/java/org/ldk/structs/FundingLocked.java @@ -5,55 +5,83 @@ 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); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.FundingLocked_free(ptr); - } - - public static FundingLocked constructor_clone(FundingLocked orig) { - long ret = bindings.FundingLocked_clone(orig == null ? 0 : orig.ptr & ~1); - FundingLocked ret_hu_conv = new FundingLocked(null, ret); - ret_hu_conv.ptrs_to.add(orig); - return ret_hu_conv; + 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); + ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } - public byte[] write(FundingLocked obj) { - byte[] ret = bindings.FundingLocked_write(obj == null ? 0 : obj.ptr & ~1); - this.ptrs_to.add(obj); + /** + * Creates a copy of the FundingLocked + */ + public FundingLocked clone() { + long ret = bindings.FundingLocked_clone(this.ptr); + FundingLocked ret_hu_conv = new FundingLocked(null, ret); + ret_hu_conv.ptrs_to.add(this); + 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; } - public static FundingLocked constructor_read(byte[] ser) { + /** + * 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); - FundingLocked ret_hu_conv = new FundingLocked(null, ret); + Result_FundingLockedDecodeErrorZ ret_hu_conv = Result_FundingLockedDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }