OLD | NEW |
1 | 1 |
2 class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ
e "*HTMLTableElement" { | 2 class _HTMLTableElementJs extends _HTMLElementJs implements HTMLTableElement nat
ive "*HTMLTableElement" { |
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 String get border() native "return this.border;"; | 12 String get border() native "return this.border;"; |
13 | 13 |
14 void set border(String value) native "this.border = value;"; | 14 void set border(String value) native "this.border = value;"; |
15 | 15 |
16 HTMLTableCaptionElementJs get caption() native "return this.caption;"; | 16 _HTMLTableCaptionElementJs get caption() native "return this.caption;"; |
17 | 17 |
18 void set caption(HTMLTableCaptionElementJs value) native "this.caption = value
;"; | 18 void set caption(_HTMLTableCaptionElementJs value) native "this.caption = valu
e;"; |
19 | 19 |
20 String get cellPadding() native "return this.cellPadding;"; | 20 String get cellPadding() native "return this.cellPadding;"; |
21 | 21 |
22 void set cellPadding(String value) native "this.cellPadding = value;"; | 22 void set cellPadding(String value) native "this.cellPadding = value;"; |
23 | 23 |
24 String get cellSpacing() native "return this.cellSpacing;"; | 24 String get cellSpacing() native "return this.cellSpacing;"; |
25 | 25 |
26 void set cellSpacing(String value) native "this.cellSpacing = value;"; | 26 void set cellSpacing(String value) native "this.cellSpacing = value;"; |
27 | 27 |
28 String get frame() native "return this.frame;"; | 28 String get frame() native "return this.frame;"; |
29 | 29 |
30 void set frame(String value) native "this.frame = value;"; | 30 void set frame(String value) native "this.frame = value;"; |
31 | 31 |
32 HTMLCollectionJs get rows() native "return this.rows;"; | 32 _HTMLCollectionJs get rows() native "return this.rows;"; |
33 | 33 |
34 String get rules() native "return this.rules;"; | 34 String get rules() native "return this.rules;"; |
35 | 35 |
36 void set rules(String value) native "this.rules = value;"; | 36 void set rules(String value) native "this.rules = value;"; |
37 | 37 |
38 String get summary() native "return this.summary;"; | 38 String get summary() native "return this.summary;"; |
39 | 39 |
40 void set summary(String value) native "this.summary = value;"; | 40 void set summary(String value) native "this.summary = value;"; |
41 | 41 |
42 HTMLCollectionJs get tBodies() native "return this.tBodies;"; | 42 _HTMLCollectionJs get tBodies() native "return this.tBodies;"; |
43 | 43 |
44 HTMLTableSectionElementJs get tFoot() native "return this.tFoot;"; | 44 _HTMLTableSectionElementJs get tFoot() native "return this.tFoot;"; |
45 | 45 |
46 void set tFoot(HTMLTableSectionElementJs value) native "this.tFoot = value;"; | 46 void set tFoot(_HTMLTableSectionElementJs value) native "this.tFoot = value;"; |
47 | 47 |
48 HTMLTableSectionElementJs get tHead() native "return this.tHead;"; | 48 _HTMLTableSectionElementJs get tHead() native "return this.tHead;"; |
49 | 49 |
50 void set tHead(HTMLTableSectionElementJs value) native "this.tHead = value;"; | 50 void set tHead(_HTMLTableSectionElementJs value) native "this.tHead = value;"; |
51 | 51 |
52 String get width() native "return this.width;"; | 52 String get width() native "return this.width;"; |
53 | 53 |
54 void set width(String value) native "this.width = value;"; | 54 void set width(String value) native "this.width = value;"; |
55 | 55 |
56 HTMLElementJs createCaption() native; | 56 _HTMLElementJs createCaption() native; |
57 | 57 |
58 HTMLElementJs createTFoot() native; | 58 _HTMLElementJs createTFoot() native; |
59 | 59 |
60 HTMLElementJs createTHead() native; | 60 _HTMLElementJs createTHead() native; |
61 | 61 |
62 void deleteCaption() native; | 62 void deleteCaption() native; |
63 | 63 |
64 void deleteRow(int index) native; | 64 void deleteRow(int index) native; |
65 | 65 |
66 void deleteTFoot() native; | 66 void deleteTFoot() native; |
67 | 67 |
68 void deleteTHead() native; | 68 void deleteTHead() native; |
69 | 69 |
70 HTMLElementJs insertRow(int index) native; | 70 _HTMLElementJs insertRow(int index) native; |
71 } | 71 } |
OLD | NEW |