OLD | NEW |
1 | 1 |
2 class HTMLAnchorElementJs extends HTMLElementJs implements HTMLAnchorElement nat
ive "*HTMLAnchorElement" { | 2 class _HTMLAnchorElementJs extends _HTMLElementJs implements HTMLAnchorElement n
ative "*HTMLAnchorElement" { |
3 | 3 |
4 String get charset() native "return this.charset;"; | 4 String get charset() native "return this.charset;"; |
5 | 5 |
6 void set charset(String value) native "this.charset = value;"; | 6 void set charset(String value) native "this.charset = value;"; |
7 | 7 |
8 String get coords() native "return this.coords;"; | 8 String get coords() native "return this.coords;"; |
9 | 9 |
10 void set coords(String value) native "this.coords = value;"; | 10 void set coords(String value) native "this.coords = value;"; |
11 | 11 |
12 String get download() native "return this.download;"; | 12 String get download() native "return this.download;"; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 void set target(String value) native "this.target = value;"; | 76 void set target(String value) native "this.target = value;"; |
77 | 77 |
78 String get text() native "return this.text;"; | 78 String get text() native "return this.text;"; |
79 | 79 |
80 String get type() native "return this.type;"; | 80 String get type() native "return this.type;"; |
81 | 81 |
82 void set type(String value) native "this.type = value;"; | 82 void set type(String value) native "this.type = value;"; |
83 | 83 |
84 String toString() native; | 84 String toString() native; |
85 } | 85 } |
OLD | NEW |