Update to support None
[ldk-java] / src / main / java / org / ldk / structs / UpdateAddHTLC.java
index fd9d3e08dd147f738e5c6e8240ded5e87e81a06b..adca17e6c197965b74d1690576c64d2f37da2bc0 100644 (file)
@@ -11,62 +11,62 @@ public class UpdateAddHTLC extends CommonBase {
        }
 
        public UpdateAddHTLC(UpdateAddHTLC orig) {
-               super(bindings.UpdateAddHTLC_clone(orig.ptr & ~1));
+               super(bindings.UpdateAddHTLC_clone(orig == null ? 0 : orig.ptr & ~1));
                this.ptrs_to.add(orig);
        }
 
        public byte[] get_channel_id(UpdateAddHTLC this_ptr) {
-               byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this_ptr.ptr & ~1);
+               byte[] ret = bindings.UpdateAddHTLC_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_channel_id(UpdateAddHTLC this_ptr, byte[] val) {
-               bindings.UpdateAddHTLC_set_channel_id(this_ptr.ptr & ~1, val);
+               bindings.UpdateAddHTLC_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }
 
        public long get_htlc_id(UpdateAddHTLC this_ptr) {
-               long ret = bindings.UpdateAddHTLC_get_htlc_id(this_ptr.ptr & ~1);
+               long ret = bindings.UpdateAddHTLC_get_htlc_id(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_htlc_id(UpdateAddHTLC this_ptr, long val) {
-               bindings.UpdateAddHTLC_set_htlc_id(this_ptr.ptr & ~1, val);
+               bindings.UpdateAddHTLC_set_htlc_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }
 
        public long get_amount_msat(UpdateAddHTLC this_ptr) {
-               long ret = bindings.UpdateAddHTLC_get_amount_msat(this_ptr.ptr & ~1);
+               long ret = bindings.UpdateAddHTLC_get_amount_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_amount_msat(UpdateAddHTLC this_ptr, long val) {
-               bindings.UpdateAddHTLC_set_amount_msat(this_ptr.ptr & ~1, val);
+               bindings.UpdateAddHTLC_set_amount_msat(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }
 
        public byte[] get_payment_hash(UpdateAddHTLC this_ptr) {
-               byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this_ptr.ptr & ~1);
+               byte[] ret = bindings.UpdateAddHTLC_get_payment_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_payment_hash(UpdateAddHTLC this_ptr, byte[] val) {
-               bindings.UpdateAddHTLC_set_payment_hash(this_ptr.ptr & ~1, val);
+               bindings.UpdateAddHTLC_set_payment_hash(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }
 
        public int get_cltv_expiry(UpdateAddHTLC this_ptr) {
-               int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this_ptr.ptr & ~1);
+               int ret = bindings.UpdateAddHTLC_get_cltv_expiry(this_ptr == null ? 0 : this_ptr.ptr & ~1);
                this.ptrs_to.add(this_ptr);
                return ret;
        }
 
        public void set_cltv_expiry(UpdateAddHTLC this_ptr, int val) {
-               bindings.UpdateAddHTLC_set_cltv_expiry(this_ptr.ptr & ~1, val);
+               bindings.UpdateAddHTLC_set_cltv_expiry(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
                this.ptrs_to.add(this_ptr);
        }