Properly set CVec_u8Z to a byte[] which adds a ton more fn's
[ldk-java] / src / main / java / org / ldk / structs / Shutdown.java
index 599ffcf64a0cd26b491c4f06b23009741d9080c7..111511269b4244cb8efcb0472ac3f65891ab6b6e 100644 (file)
@@ -7,28 +7,49 @@ public class Shutdown extends CommonBase {
        Shutdown(Object _dummy, long ptr) { super(ptr); }
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
-               bindings.Shutdown_free(ptr); super.finalize();
+               super.finalize();
+               bindings.Shutdown_free(ptr);
        }
 
        public Shutdown(Shutdown orig) {
-               super(bindings.Shutdown_clone(orig.ptr & ~1));
+               super(bindings.Shutdown_clone(orig == null ? 0 : orig.ptr & ~1));
                this.ptrs_to.add(orig);
        }
 
        public byte[] get_channel_id(Shutdown this_ptr) {
-               byte[] ret = bindings.Shutdown_get_channel_id(this_ptr.ptr & ~1);
+               byte[] ret = bindings.Shutdown_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_channel_id(Shutdown this_ptr, byte[] val) {
-               bindings.Shutdown_set_channel_id(this_ptr.ptr & ~1, val);
+               bindings.Shutdown_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }
 
-       // Skipped Shutdown_get_scriptpubkey
-       // Skipped Shutdown_set_scriptpubkey
-       // Skipped Shutdown_new
-       // Skipped Shutdown_write
-       // Skipped Shutdown_read
+       public byte[] get_scriptpubkey(Shutdown this_ptr) {
+               byte[] ret = bindings.Shutdown_get_scriptpubkey(this_ptr == null ? 0 : this_ptr.ptr & ~1);
+               this.ptrs_to.add(this_ptr);
+               return ret;
+       }
+
+       public void set_scriptpubkey(Shutdown this_ptr, byte[] val) {
+               bindings.Shutdown_set_scriptpubkey(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
+               this.ptrs_to.add(this_ptr);
+       }
+
+       public Shutdown(byte[] channel_id_arg, byte[] scriptpubkey_arg) {
+               super(bindings.Shutdown_new(channel_id_arg, scriptpubkey_arg));
+       }
+
+       public byte[] write(Shutdown obj) {
+               byte[] ret = bindings.Shutdown_write(obj == null ? 0 : obj.ptr & ~1);
+               this.ptrs_to.add(obj);
+               return ret;
+       }
+
+       public Shutdown(byte[] ser) {
+               super(bindings.Shutdown_read(ser));
+       }
+
 }