Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / ChannelUpdate.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class ChannelUpdate extends CommonBase {
7         ChannelUpdate(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.ChannelUpdate_free(ptr);
12         }
13
14         public ChannelUpdate(ChannelUpdate orig) {
15                 super(bindings.ChannelUpdate_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_signature(ChannelUpdate this_ptr) {
20                 byte[] ret = bindings.ChannelUpdate_get_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1);
21                 this.ptrs_to.add(this_ptr);
22                 return ret;
23         }
24
25         public void set_signature(ChannelUpdate this_ptr, byte[] val) {
26                 bindings.ChannelUpdate_set_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public UnsignedChannelUpdate get_contents(ChannelUpdate this_ptr) {
31                 UnsignedChannelUpdate ret = new UnsignedChannelUpdate(null, bindings.ChannelUpdate_get_contents(this_ptr == null ? 0 : this_ptr.ptr & ~1));
32                 this.ptrs_to.add(this_ptr);
33                 return ret;
34         }
35
36         public void set_contents(ChannelUpdate this_ptr, UnsignedChannelUpdate val) {
37                 bindings.ChannelUpdate_set_contents(this_ptr == null ? 0 : this_ptr.ptr & ~1, val == null ? 0 : val.ptr & ~1);
38                 this.ptrs_to.add(this_ptr);
39                 this.ptrs_to.add(val);
40         }
41
42         public ChannelUpdate(byte[] signature_arg, UnsignedChannelUpdate contents_arg) {
43                 super(bindings.ChannelUpdate_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1));
44                 this.ptrs_to.add(contents_arg);
45         }
46
47         public byte[] write(ChannelUpdate obj) {
48                 byte[] ret = bindings.ChannelUpdate_write(obj == null ? 0 : obj.ptr & ~1);
49                 this.ptrs_to.add(obj);
50                 return ret;
51         }
52
53         public ChannelUpdate(byte[] ser) {
54                 super(bindings.ChannelUpdate_read(ser));
55         }
56
57 }