OLD | NEW |
1 | 1 |
2 class HTMLLIElementJs extends HTMLElementJs implements HTMLLIElement native "*HT
MLLIElement" { | 2 class _HTMLLIElementJs extends _HTMLElementJs implements HTMLLIElement native "*
HTMLLIElement" { |
3 | 3 |
4 String get type() native "return this.type;"; | 4 String get type() native "return this.type;"; |
5 | 5 |
6 void set type(String value) native "this.type = value;"; | 6 void set type(String value) native "this.type = value;"; |
7 | 7 |
8 int get value() native "return this.value;"; | 8 int get value() native "return this.value;"; |
9 | 9 |
10 void set value(int value) native "this.value = value;"; | 10 void set value(int value) native "this.value = value;"; |
11 } | 11 } |
OLD | NEW |