Update tests to new logger API
[ldk-java] / ts / structs / Description.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class Description extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.Description_free(this.ptr);
19                     }
20                 }
21         public Description clone() {
22                 number ret = bindings.Description_clone(this.ptr);
23                 const ret_hu_conv: Description = new Description(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public number hash() {
29                 number ret = bindings.Description_hash(this.ptr);
30                 return ret;
31         }
32
33         public boolean eq(Description b) {
34                 boolean ret = bindings.Description_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
35                 this.ptrs_to.add(b);
36                 return ret;
37         }
38
39         public static Result_DescriptionCreationErrorZ constructor_new(String description) {
40                 number ret = bindings.Description_new(description);
41                 Result_DescriptionCreationErrorZ ret_hu_conv = Result_DescriptionCreationErrorZ.constr_from_ptr(ret);
42                 return ret_hu_conv;
43         }
44
45         public String into_inner() {
46                 String ret = bindings.Description_into_inner(this.ptr);
47                 return ret;
48         }
49
50 }