OLD | NEW |
1 | 1 |
2 class HTMLTableRowElementJs extends HTMLElementJs implements HTMLTableRowElement
native "*HTMLTableRowElement" { | 2 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme
nt native "*HTMLTableRowElement" { |
3 | 3 |
4 String get align() native "return this.align;"; | 4 String get align() native "return this.align;"; |
5 | 5 |
6 void set align(String value) native "this.align = value;"; | 6 void set align(String value) native "this.align = value;"; |
7 | 7 |
8 String get bgColor() native "return this.bgColor;"; | 8 String get bgColor() native "return this.bgColor;"; |
9 | 9 |
10 void set bgColor(String value) native "this.bgColor = value;"; | 10 void set bgColor(String value) native "this.bgColor = value;"; |
11 | 11 |
12 HTMLCollectionJs get cells() native "return this.cells;"; | 12 _HTMLCollectionJs get cells() native "return this.cells;"; |
13 | 13 |
14 String get ch() native "return this.ch;"; | 14 String get ch() native "return this.ch;"; |
15 | 15 |
16 void set ch(String value) native "this.ch = value;"; | 16 void set ch(String value) native "this.ch = value;"; |
17 | 17 |
18 String get chOff() native "return this.chOff;"; | 18 String get chOff() native "return this.chOff;"; |
19 | 19 |
20 void set chOff(String value) native "this.chOff = value;"; | 20 void set chOff(String value) native "this.chOff = value;"; |
21 | 21 |
22 int get rowIndex() native "return this.rowIndex;"; | 22 int get rowIndex() native "return this.rowIndex;"; |
23 | 23 |
24 int get sectionRowIndex() native "return this.sectionRowIndex;"; | 24 int get sectionRowIndex() native "return this.sectionRowIndex;"; |
25 | 25 |
26 String get vAlign() native "return this.vAlign;"; | 26 String get vAlign() native "return this.vAlign;"; |
27 | 27 |
28 void set vAlign(String value) native "this.vAlign = value;"; | 28 void set vAlign(String value) native "this.vAlign = value;"; |
29 | 29 |
30 void deleteCell(int index) native; | 30 void deleteCell(int index) native; |
31 | 31 |
32 HTMLElementJs insertCell(int index) native; | 32 _HTMLElementJs insertCell(int index) native; |
33 } | 33 } |
OLD | NEW |