Create structs and traits that are (a bit) more human-friendly!
[ldk-java] / src / main / java / org / ldk / structs / ClosingSigned.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class ClosingSigned extends CommonBase {
7         ClosingSigned(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.ClosingSigned_free(ptr); super.finalize();
11         }
12
13         public ClosingSigned(ClosingSigned orig) {
14                 super(bindings.ClosingSigned_clone(orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_channel_id(ClosingSigned this_ptr) {
19                 byte[] ret = bindings.ClosingSigned_get_channel_id(this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_channel_id(ClosingSigned this_ptr, byte[] val) {
25                 bindings.ClosingSigned_set_channel_id(this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         public long get_fee_satoshis(ClosingSigned this_ptr) {
30                 long ret = bindings.ClosingSigned_get_fee_satoshis(this_ptr.ptr & ~1);
31                 this.ptrs_to.add(this_ptr);
32                 return ret;
33         }
34
35         public void set_fee_satoshis(ClosingSigned this_ptr, long val) {
36                 bindings.ClosingSigned_set_fee_satoshis(this_ptr.ptr & ~1, val);
37                 this.ptrs_to.add(this_ptr);
38         }
39
40         // Skipped ClosingSigned_get_signature
41         // Skipped ClosingSigned_set_signature
42         // Skipped ClosingSigned_new
43         // Skipped ClosingSigned_write
44         // Skipped ClosingSigned_read
45 }