1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 public class FundingCreated extends CommonBase {
7 FundingCreated(Object _dummy, long ptr) { super(ptr); }
8 @Override @SuppressWarnings("deprecation")
9 protected void finalize() throws Throwable {
11 bindings.FundingCreated_free(ptr);
14 public FundingCreated(FundingCreated orig) {
15 super(bindings.FundingCreated_clone(orig == null ? 0 : orig.ptr & ~1));
16 this.ptrs_to.add(orig);
19 public byte[] get_temporary_channel_id(FundingCreated this_ptr) {
20 byte[] ret = bindings.FundingCreated_get_temporary_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21 this.ptrs_to.add(this_ptr);
25 public void set_temporary_channel_id(FundingCreated this_ptr, byte[] val) {
26 bindings.FundingCreated_set_temporary_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27 this.ptrs_to.add(this_ptr);
30 public byte[] get_funding_txid(FundingCreated this_ptr) {
31 byte[] ret = bindings.FundingCreated_get_funding_txid(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32 this.ptrs_to.add(this_ptr);
36 public void set_funding_txid(FundingCreated this_ptr, byte[] val) {
37 bindings.FundingCreated_set_funding_txid(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38 this.ptrs_to.add(this_ptr);
41 public short get_funding_output_index(FundingCreated this_ptr) {
42 short ret = bindings.FundingCreated_get_funding_output_index(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43 this.ptrs_to.add(this_ptr);
47 public void set_funding_output_index(FundingCreated this_ptr, short val) {
48 bindings.FundingCreated_set_funding_output_index(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49 this.ptrs_to.add(this_ptr);
52 public byte[] get_signature(FundingCreated this_ptr) {
53 byte[] ret = bindings.FundingCreated_get_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1);
54 this.ptrs_to.add(this_ptr);
58 public void set_signature(FundingCreated this_ptr, byte[] val) {
59 bindings.FundingCreated_set_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
60 this.ptrs_to.add(this_ptr);
63 public FundingCreated(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) {
64 super(bindings.FundingCreated_new(temporary_channel_id_arg, funding_txid_arg, funding_output_index_arg, signature_arg));
67 // Skipped FundingCreated_write
68 public FundingCreated(byte[] ser) {
69 super(bindings.FundingCreated_read(ser));