Use AutoCloseable for structs named Locked*
[ldk-java] / src / main / java / org / ldk / structs / QueryShortChannelIds.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class QueryShortChannelIds extends CommonBase {
7         QueryShortChannelIds(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.QueryShortChannelIds_free(ptr);
12         }
13
14         public QueryShortChannelIds(QueryShortChannelIds orig) {
15                 super(bindings.QueryShortChannelIds_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_chain_hash(QueryShortChannelIds this_ptr) {
20                 byte[] ret = bindings.QueryShortChannelIds_get_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_chain_hash(QueryShortChannelIds this_ptr, byte[] val) {
26                 bindings.QueryShortChannelIds_set_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         // Skipped QueryShortChannelIds_set_short_channel_ids
31         // Skipped QueryShortChannelIds_new
32         public QueryShortChannelIds(byte[] ser) {
33                 super(bindings.QueryShortChannelIds_read(ser));
34         }
35
36         // Skipped QueryShortChannelIds_write
37 }