X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FErrorMessage.java;h=73788d483eba68a0dc03e86d524397c18af0589a;hb=4fd49e2371dbec8f26732bd14af0d5c7aa3c1fdd;hp=b63931d68a0c82e47a9da5235ac74d21009aa4b4;hpb=2ed9081562d00a8645604b07629e963231d49e0f;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ErrorMessage.java b/src/main/java/org/ldk/structs/ErrorMessage.java index b63931d6..73788d48 100644 --- a/src/main/java/org/ldk/structs/ErrorMessage.java +++ b/src/main/java/org/ldk/structs/ErrorMessage.java @@ -2,36 +2,59 @@ 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 ErrorMessage extends CommonBase { ErrorMessage(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { - bindings.ErrorMessage_free(ptr); super.finalize(); + super.finalize(); + if (ptr != 0) { bindings.ErrorMessage_free(ptr); } } - public ErrorMessage(ErrorMessage orig) { - super(bindings.ErrorMessage_clone(orig == null ? 0 : orig.ptr & ~1)); - this.ptrs_to.add(orig); + public static ErrorMessage constructor_clone(ErrorMessage orig) { + long ret = bindings.ErrorMessage_clone(orig == null ? 0 : orig.ptr & ~1); + ErrorMessage ret_hu_conv = new ErrorMessage(null, ret); + ret_hu_conv.ptrs_to.add(orig); + return ret_hu_conv; } - public byte[] get_channel_id(ErrorMessage this_ptr) { - byte[] ret = bindings.ErrorMessage_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + public byte[] get_channel_id() { + byte[] ret = bindings.ErrorMessage_get_channel_id(this.ptr); return ret; } - public void set_channel_id(ErrorMessage this_ptr, byte[] val) { - bindings.ErrorMessage_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + public void set_channel_id(byte[] val) { + bindings.ErrorMessage_set_channel_id(this.ptr, val); } - // Skipped ErrorMessage_get_data - // Skipped ErrorMessage_set_data - // Skipped ErrorMessage_new - // Skipped ErrorMessage_write - public ErrorMessage(byte[] ser) { - super(bindings.ErrorMessage_read(ser)); + public String get_data() { + String ret = bindings.ErrorMessage_get_data(this.ptr); + return ret; + } + + public void set_data(byte[] val) { + bindings.ErrorMessage_set_data(this.ptr, val); + } + + public static ErrorMessage constructor_new(byte[] channel_id_arg, byte[] data_arg) { + long ret = bindings.ErrorMessage_new(channel_id_arg, data_arg); + ErrorMessage ret_hu_conv = new ErrorMessage(null, ret); + return ret_hu_conv; + } + + public byte[] write(ErrorMessage obj) { + byte[] ret = bindings.ErrorMessage_write(obj == null ? 0 : obj.ptr & ~1); + this.ptrs_to.add(obj); + return ret; + } + + public static ErrorMessage constructor_read(byte[] ser) { + long ret = bindings.ErrorMessage_read(ser); + ErrorMessage ret_hu_conv = new ErrorMessage(null, ret); + return ret_hu_conv; } }