| OLD | NEW |
| 1 | 1 |
| 2 class HTMLBodyElementJs extends HTMLElementJs implements HTMLBodyElement native
"*HTMLBodyElement" { | 2 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ
e "*HTMLBodyElement" { |
| 3 | 3 |
| 4 String get aLink() native "return this.aLink;"; | 4 String get aLink() native "return this.aLink;"; |
| 5 | 5 |
| 6 void set aLink(String value) native "this.aLink = value;"; | 6 void set aLink(String value) native "this.aLink = value;"; |
| 7 | 7 |
| 8 String get background() native "return this.background;"; | 8 String get background() native "return this.background;"; |
| 9 | 9 |
| 10 void set background(String value) native "this.background = value;"; | 10 void set background(String value) native "this.background = value;"; |
| 11 | 11 |
| 12 String get bgColor() native "return this.bgColor;"; | 12 String get bgColor() native "return this.bgColor;"; |
| 13 | 13 |
| 14 void set bgColor(String value) native "this.bgColor = value;"; | 14 void set bgColor(String value) native "this.bgColor = value;"; |
| 15 | 15 |
| 16 String get link() native "return this.link;"; | 16 String get link() native "return this.link;"; |
| 17 | 17 |
| 18 void set link(String value) native "this.link = value;"; | 18 void set link(String value) native "this.link = value;"; |
| 19 | 19 |
| 20 String get text() native "return this.text;"; | 20 String get text() native "return this.text;"; |
| 21 | 21 |
| 22 void set text(String value) native "this.text = value;"; | 22 void set text(String value) native "this.text = value;"; |
| 23 | 23 |
| 24 String get vLink() native "return this.vLink;"; | 24 String get vLink() native "return this.vLink;"; |
| 25 | 25 |
| 26 void set vLink(String value) native "this.vLink = value;"; | 26 void set vLink(String value) native "this.vLink = value;"; |
| 27 } | 27 } |
| OLD | NEW |