X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPeerHandleError.java;h=1b7b3987dce97363fb5bb06cc21f92f9775e819d;hb=3c88e2f6e84c7f38723ff162ca72d613df5eeb97;hp=6586e91c857101551b9b84f5491d7ee729beb691;hpb=ad15b3a4dbf3fbc7f08ef22d656bae79e8182008;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PeerHandleError.java b/src/main/java/org/ldk/structs/PeerHandleError.java index 6586e91c..1b7b3987 100644 --- a/src/main/java/org/ldk/structs/PeerHandleError.java +++ b/src/main/java/org/ldk/structs/PeerHandleError.java @@ -2,28 +2,31 @@ 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 PeerHandleError extends CommonBase { PeerHandleError(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.PeerHandleError_free(ptr); + if (ptr != 0) { bindings.PeerHandleError_free(ptr); } } - public boolean get_no_connection_possible(PeerHandleError this_ptr) { - boolean ret = bindings.PeerHandleError_get_no_connection_possible(this_ptr == null ? 0 : this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + public boolean get_no_connection_possible() { + boolean ret = bindings.PeerHandleError_get_no_connection_possible(this.ptr); return ret; } - public void set_no_connection_possible(PeerHandleError this_ptr, boolean val) { - bindings.PeerHandleError_set_no_connection_possible(this_ptr == null ? 0 : this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + public void set_no_connection_possible(boolean val) { + bindings.PeerHandleError_set_no_connection_possible(this.ptr, val); } - public PeerHandleError(boolean no_connection_possible_arg) { - super(bindings.PeerHandleError_new(no_connection_possible_arg)); + public static PeerHandleError constructor_new(boolean no_connection_possible_arg) { + long ret = bindings.PeerHandleError_new(no_connection_possible_arg); + PeerHandleError ret_hu_conv = new PeerHandleError(null, ret); + return ret_hu_conv; } }