Create structs and traits that are (a bit) more human-friendly!
[ldk-java] / src / main / java / org / ldk / structs / CommitmentSigned.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class CommitmentSigned extends CommonBase {
7         CommitmentSigned(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.CommitmentSigned_free(ptr); super.finalize();
11         }
12
13         public CommitmentSigned(CommitmentSigned orig) {
14                 super(bindings.CommitmentSigned_clone(orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_channel_id(CommitmentSigned this_ptr) {
19                 byte[] ret = bindings.CommitmentSigned_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(CommitmentSigned this_ptr, byte[] val) {
25                 bindings.CommitmentSigned_set_channel_id(this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         // Skipped CommitmentSigned_get_signature
30         // Skipped CommitmentSigned_set_signature
31         // Skipped CommitmentSigned_set_htlc_signatures
32         // Skipped CommitmentSigned_new
33         // Skipped CommitmentSigned_write
34         // Skipped CommitmentSigned_read
35 }