9d15fee3512292d2c6967668eb63e52da63fc776
[ldk-java] / src / main / java / org / ldk / structs / QueryChannelRange.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class QueryChannelRange extends CommonBase {
7         QueryChannelRange(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.QueryChannelRange_free(ptr);
12         }
13
14         public QueryChannelRange(QueryChannelRange orig) {
15                 super(bindings.QueryChannelRange_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_chain_hash(QueryChannelRange this_ptr) {
20                 byte[] ret = bindings.QueryChannelRange_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(QueryChannelRange this_ptr, byte[] val) {
26                 bindings.QueryChannelRange_set_chain_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public int get_first_blocknum(QueryChannelRange this_ptr) {
31                 int ret = bindings.QueryChannelRange_get_first_blocknum(this_ptr == null ? 0 : this_ptr.ptr & ~1);
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_first_blocknum(QueryChannelRange this_ptr, int val) {
37                 bindings.QueryChannelRange_set_first_blocknum(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
38                 this.ptrs_to.add(this_ptr);
39         }
40
41         public int get_number_of_blocks(QueryChannelRange this_ptr) {
42                 int ret = bindings.QueryChannelRange_get_number_of_blocks(this_ptr == null ? 0 : this_ptr.ptr & ~1);
43                 this.ptrs_to.add(this_ptr);
44                 return ret;
45         }
46
47         public void set_number_of_blocks(QueryChannelRange this_ptr, int val) {
48                 bindings.QueryChannelRange_set_number_of_blocks(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
49                 this.ptrs_to.add(this_ptr);
50         }
51
52         public QueryChannelRange(byte[] chain_hash_arg, int first_blocknum_arg, int number_of_blocks_arg) {
53                 super(bindings.QueryChannelRange_new(chain_hash_arg, first_blocknum_arg, number_of_blocks_arg));
54         }
55
56         public QueryChannelRange(byte[] ser) {
57                 super(bindings.QueryChannelRange_read(ser));
58         }
59
60         // Skipped QueryChannelRange_write
61 }