Use AutoCloseable for structs named Locked*
[ldk-java] / src / main / java / org / ldk / structs / NodeAnnouncement.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class NodeAnnouncement extends CommonBase {
7         NodeAnnouncement(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 super.finalize();
11                 bindings.NodeAnnouncement_free(ptr);
12         }
13
14         public NodeAnnouncement(NodeAnnouncement orig) {
15                 super(bindings.NodeAnnouncement_clone(orig == null ? 0 : orig.ptr & ~1));
16                 this.ptrs_to.add(orig);
17         }
18
19         public byte[] get_signature(NodeAnnouncement this_ptr) {
20                 byte[] ret = bindings.NodeAnnouncement_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(NodeAnnouncement this_ptr, byte[] val) {
26                 bindings.NodeAnnouncement_set_signature(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
27                 this.ptrs_to.add(this_ptr);
28         }
29
30         public UnsignedNodeAnnouncement get_contents(NodeAnnouncement this_ptr) {
31                 UnsignedNodeAnnouncement ret = new UnsignedNodeAnnouncement(null, bindings.NodeAnnouncement_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(NodeAnnouncement this_ptr, UnsignedNodeAnnouncement val) {
37                 bindings.NodeAnnouncement_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 NodeAnnouncement(byte[] signature_arg, UnsignedNodeAnnouncement contents_arg) {
43                 super(bindings.NodeAnnouncement_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1));
44                 this.ptrs_to.add(contents_arg);
45         }
46
47         // Skipped NodeAnnouncement_write
48         public NodeAnnouncement(byte[] ser) {
49                 super(bindings.NodeAnnouncement_read(ser));
50         }
51
52 }