Figure out java human types conversion stuff when doing all conv
[ldk-java] / src / main / java / org / ldk / structs / FundingSigned.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class FundingSigned extends CommonBase {
7         FundingSigned(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.FundingSigned_free(ptr);
12         }
13
14         public FundingSigned(FundingSigned orig) {
15                 super(bindings.FundingSigned_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_channel_id(FundingSigned this_ptr) {
20                 byte[] ret = bindings.FundingSigned_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_channel_id(FundingSigned this_ptr, byte[] val) {
26                 bindings.FundingSigned_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public byte[] get_signature(FundingSigned this_ptr) {
31                 byte[] ret = bindings.FundingSigned_get_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_signature(FundingSigned this_ptr, byte[] val) {
37                 bindings.FundingSigned_set_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public FundingSigned(byte[] channel_id_arg, byte[] signature_arg) {
42                 super(bindings.FundingSigned_new(channel_id_arg, signature_arg));
43         }
44
45         // Skipped FundingSigned_write
46         public FundingSigned(byte[] ser) {
47                 super(bindings.FundingSigned_read(ser));
48         }
49
50 }