X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FNodeInfo.java;h=8b9837398d36a2f49bbfb685bf011357ebe09321;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=5f4aed27a135182645ef1d4bc5bfd540ad8537e5;hpb=90f8a21c87ba652884d5b94404b9b24a18f0cefc;p=ldk-java diff --git a/src/main/java/org/ldk/structs/NodeInfo.java b/src/main/java/org/ldk/structs/NodeInfo.java index 5f4aed27..8b983739 100644 --- a/src/main/java/org/ldk/structs/NodeInfo.java +++ b/src/main/java/org/ldk/structs/NodeInfo.java @@ -21,6 +21,7 @@ public class NodeInfo extends CommonBase { public RoutingFees get_lowest_inbound_channel_fees() { long ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr); RoutingFees ret_hu_conv = new RoutingFees(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -32,19 +33,39 @@ public class NodeInfo extends CommonBase { public NodeAnnouncementInfo get_announcement_info() { long ret = bindings.NodeInfo_get_announcement_info(this.ptr); NodeAnnouncementInfo ret_hu_conv = new NodeAnnouncementInfo(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + public void set_announcement_info(NodeAnnouncementInfo val) { + bindings.NodeInfo_set_announcement_info(this.ptr, val == null ? 0 : val.ptr & ~1); + this.ptrs_to.add(val); + } + + public static NodeInfo constructor_new(long[] channels_arg, RoutingFees lowest_inbound_channel_fees_arg, NodeAnnouncementInfo announcement_info_arg) { + long ret = bindings.NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg == null ? 0 : lowest_inbound_channel_fees_arg.ptr & ~1, announcement_info_arg == null ? 0 : announcement_info_arg.ptr & ~1); + NodeInfo ret_hu_conv = new NodeInfo(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + ret_hu_conv.ptrs_to.add(lowest_inbound_channel_fees_arg); + ret_hu_conv.ptrs_to.add(announcement_info_arg); + return ret_hu_conv; + } + + public NodeInfo clone() { + long ret = bindings.NodeInfo_clone(this.ptr); + NodeInfo ret_hu_conv = new NodeInfo(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } - // Skipped NodeInfo_set_announcement_info - // Skipped NodeInfo_new public byte[] write() { byte[] ret = bindings.NodeInfo_write(this.ptr); return ret; } - public static NodeInfo constructor_read(byte[] ser) { + public static Result_NodeInfoDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.NodeInfo_read(ser); - NodeInfo ret_hu_conv = new NodeInfo(null, ret); + Result_NodeInfoDecodeErrorZ ret_hu_conv = Result_NodeInfoDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }