Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLTableElementWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _HTMLTableElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLTableElement {
8 _HTMLTableElementWrappingImplementation() : super() {}
9
10 static create__HTMLTableElementWrappingImplementation() native {
11 return new _HTMLTableElementWrappingImplementation();
12 }
13
14 String get align() { return _get_align(this); }
15 static String _get_align(var _this) native;
16
17 void set align(String value) { _set_align(this, value); }
18 static void _set_align(var _this, String value) native;
19
20 String get bgColor() { return _get_bgColor(this); }
21 static String _get_bgColor(var _this) native;
22
23 void set bgColor(String value) { _set_bgColor(this, value); }
24 static void _set_bgColor(var _this, String value) native;
25
26 String get border() { return _get_border(this); }
27 static String _get_border(var _this) native;
28
29 void set border(String value) { _set_border(this, value); }
30 static void _set_border(var _this, String value) native;
31
32 HTMLTableCaptionElement get caption() { return _get_caption(this); }
33 static HTMLTableCaptionElement _get_caption(var _this) native;
34
35 void set caption(HTMLTableCaptionElement value) { _set_caption(this, value); }
36 static void _set_caption(var _this, HTMLTableCaptionElement value) native;
37
38 String get cellPadding() { return _get_cellPadding(this); }
39 static String _get_cellPadding(var _this) native;
40
41 void set cellPadding(String value) { _set_cellPadding(this, value); }
42 static void _set_cellPadding(var _this, String value) native;
43
44 String get cellSpacing() { return _get_cellSpacing(this); }
45 static String _get_cellSpacing(var _this) native;
46
47 void set cellSpacing(String value) { _set_cellSpacing(this, value); }
48 static void _set_cellSpacing(var _this, String value) native;
49
50 String get frame() { return _get_frame(this); }
51 static String _get_frame(var _this) native;
52
53 void set frame(String value) { _set_frame(this, value); }
54 static void _set_frame(var _this, String value) native;
55
56 HTMLCollection get rows() { return _get_rows(this); }
57 static HTMLCollection _get_rows(var _this) native;
58
59 String get rules() { return _get_rules(this); }
60 static String _get_rules(var _this) native;
61
62 void set rules(String value) { _set_rules(this, value); }
63 static void _set_rules(var _this, String value) native;
64
65 String get summary() { return _get_summary(this); }
66 static String _get_summary(var _this) native;
67
68 void set summary(String value) { _set_summary(this, value); }
69 static void _set_summary(var _this, String value) native;
70
71 HTMLCollection get tBodies() { return _get_tBodies(this); }
72 static HTMLCollection _get_tBodies(var _this) native;
73
74 HTMLTableSectionElement get tFoot() { return _get_tFoot(this); }
75 static HTMLTableSectionElement _get_tFoot(var _this) native;
76
77 void set tFoot(HTMLTableSectionElement value) { _set_tFoot(this, value); }
78 static void _set_tFoot(var _this, HTMLTableSectionElement value) native;
79
80 HTMLTableSectionElement get tHead() { return _get_tHead(this); }
81 static HTMLTableSectionElement _get_tHead(var _this) native;
82
83 void set tHead(HTMLTableSectionElement value) { _set_tHead(this, value); }
84 static void _set_tHead(var _this, HTMLTableSectionElement value) native;
85
86 String get width() { return _get_width(this); }
87 static String _get_width(var _this) native;
88
89 void set width(String value) { _set_width(this, value); }
90 static void _set_width(var _this, String value) native;
91
92 HTMLElement createCaption() {
93 return _createCaption(this);
94 }
95 static HTMLElement _createCaption(receiver) native;
96
97 HTMLElement createTFoot() {
98 return _createTFoot(this);
99 }
100 static HTMLElement _createTFoot(receiver) native;
101
102 HTMLElement createTHead() {
103 return _createTHead(this);
104 }
105 static HTMLElement _createTHead(receiver) native;
106
107 void deleteCaption() {
108 _deleteCaption(this);
109 return;
110 }
111 static void _deleteCaption(receiver) native;
112
113 void deleteRow(int index) {
114 _deleteRow(this, index);
115 return;
116 }
117 static void _deleteRow(receiver, index) native;
118
119 void deleteTFoot() {
120 _deleteTFoot(this);
121 return;
122 }
123 static void _deleteTFoot(receiver) native;
124
125 void deleteTHead() {
126 _deleteTHead(this);
127 return;
128 }
129 static void _deleteTHead(receiver) native;
130
131 HTMLElement insertRow(int index) {
132 return _insertRow(this, index);
133 }
134 static HTMLElement _insertRow(receiver, index) native;
135
136 String get typeName() { return "HTMLTableElement"; }
137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698