X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FNodeInfo.java;h=bc45360944282cfc299970df8066c17e5d8d03ea;hb=110f2f104ba8fc34caa7e34e04737f36f064b050;hp=7d797e15390516415522e0a341157241e537ac09;hpb=592c4f92dd3011a2f2a7988ce66ed166c3a8f58c;p=ldk-java diff --git a/src/main/java/org/ldk/structs/NodeInfo.java b/src/main/java/org/ldk/structs/NodeInfo.java index 7d797e15..bc453609 100644 --- a/src/main/java/org/ldk/structs/NodeInfo.java +++ b/src/main/java/org/ldk/structs/NodeInfo.java @@ -2,7 +2,10 @@ 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 NodeInfo extends CommonBase { NodeInfo(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") @@ -11,23 +14,25 @@ public class NodeInfo extends CommonBase { bindings.NodeInfo_free(ptr); } - // Skipped NodeInfo_set_channels - public RoutingFees get_lowest_inbound_channel_fees(NodeInfo this_ptr) { - RoutingFees ret = new RoutingFees(null, bindings.NodeInfo_get_lowest_inbound_channel_fees(this_ptr == null ? 0 : this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); - return ret; + public void set_channels(long[] val) { + bindings.NodeInfo_set_channels(this.ptr, val); + } + + 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); + return ret_hu_conv; } - public void set_lowest_inbound_channel_fees(NodeInfo this_ptr, RoutingFees val) { - bindings.NodeInfo_set_lowest_inbound_channel_fees(this_ptr == null ? 0 : this_ptr.ptr & ~1, val == null ? 0 : val.ptr & ~1); - this.ptrs_to.add(this_ptr); + public void set_lowest_inbound_channel_fees(RoutingFees val) { + bindings.NodeInfo_set_lowest_inbound_channel_fees(this.ptr, val == null ? 0 : val.ptr & ~1); this.ptrs_to.add(val); } - public NodeAnnouncementInfo get_announcement_info(NodeInfo this_ptr) { - NodeAnnouncementInfo ret = new NodeAnnouncementInfo(null, bindings.NodeInfo_get_announcement_info(this_ptr == null ? 0 : this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); - return ret; + public NodeAnnouncementInfo get_announcement_info() { + long ret = bindings.NodeInfo_get_announcement_info(this.ptr); + NodeAnnouncementInfo ret_hu_conv = new NodeAnnouncementInfo(null, ret); + return ret_hu_conv; } // Skipped NodeInfo_set_announcement_info @@ -38,8 +43,10 @@ public class NodeInfo extends CommonBase { return ret; } - public NodeInfo(byte[] ser) { - super(bindings.NodeInfo_read(ser)); + public static NodeInfo constructor_read(byte[] ser) { + long ret = bindings.NodeInfo_read(ser); + NodeInfo ret_hu_conv = new NodeInfo(null, ret); + return ret_hu_conv; } }