X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=ts%2Fstructs%2FDataLossProtect.ts;h=7e1183a18e2994921491b5cb05db62be3dde56a7;hb=22f5f4208b1f3b5542292250f1612b944f5cd7fd;hp=4b38a8b111c4f93bf52784ca87704ba1d0d821e5;hpb=56e9910ffaa7fccf2cb777dc9cf55e01a9681543;p=ldk-java diff --git a/ts/structs/DataLossProtect.ts b/ts/structs/DataLossProtect.ts index 4b38a8b1..7e1183a1 100644 --- a/ts/structs/DataLossProtect.ts +++ b/ts/structs/DataLossProtect.ts @@ -1,42 +1,50 @@ + import CommonBase from './CommonBase'; import * as bindings from '../bindings' // TODO: figure out location -public class DataLossProtect extends CommonBase { - DataLossProtect(Object _dummy, long ptr) { super(ptr); } - @Override @SuppressWarnings("deprecation") - protected void finalize() throws Throwable { - super.finalize(); - if (ptr != 0) { bindings.DataLossProtect_free(ptr); } - } + + export default class DataLossProtect extends CommonBase { + constructor(_dummy: object, ptr: number) { + super(ptr); + } + + + protected finalize() { + super.finalize(); + + if (this.ptr != 0) { + bindings.DataLossProtect_free(this.ptr); + } + } public DataLossProtect clone() { - uint32_t ret = bindings.DataLossProtect_clone(this.ptr); - DataLossProtect ret_hu_conv = new DataLossProtect(null, ret); + number ret = bindings.DataLossProtect_clone(this.ptr); + const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret); return ret_hu_conv; } - public byte[] get_your_last_per_commitment_secret() { - byte[] ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr); + public Uint8Array get_your_last_per_commitment_secret() { + Uint8Array ret = bindings.DataLossProtect_get_your_last_per_commitment_secret(this.ptr); return ret; } - public void set_your_last_per_commitment_secret(byte[] val) { + public void set_your_last_per_commitment_secret(Uint8Array val) { bindings.DataLossProtect_set_your_last_per_commitment_secret(this.ptr, val); } - public byte[] get_my_current_per_commitment_point() { - byte[] ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr); + public Uint8Array get_my_current_per_commitment_point() { + Uint8Array ret = bindings.DataLossProtect_get_my_current_per_commitment_point(this.ptr); return ret; } - public void set_my_current_per_commitment_point(byte[] val) { + public void set_my_current_per_commitment_point(Uint8Array val) { bindings.DataLossProtect_set_my_current_per_commitment_point(this.ptr, val); } - public static DataLossProtect constructor_new(byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg) { - uint32_t ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg); - DataLossProtect ret_hu_conv = new DataLossProtect(null, ret); + public static DataLossProtect constructor_new(Uint8Array your_last_per_commitment_secret_arg, Uint8Array my_current_per_commitment_point_arg) { + number ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg); + const ret_hu_conv: DataLossProtect = new DataLossProtect(null, ret); return ret_hu_conv; }