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

Side by Side Diff: client/html/generated/src/wrapping/_TableElementWrappingImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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 TableElementWrappingImplementation extends ElementWrappingImplementation i mplements TableElement {
8 TableElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get align() { return _ptr.align; }
11
12 void set align(String value) { _ptr.align = value; }
13
14 String get bgColor() { return _ptr.bgColor; }
15
16 void set bgColor(String value) { _ptr.bgColor = value; }
17
18 String get border() { return _ptr.border; }
19
20 void set border(String value) { _ptr.border = value; }
21
22 TableCaptionElement get caption() { return LevelDom.wrapTableCaptionElement(_p tr.caption); }
23
24 void set caption(TableCaptionElement value) { _ptr.caption = LevelDom.unwrap(v alue); }
25
26 String get cellPadding() { return _ptr.cellPadding; }
27
28 void set cellPadding(String value) { _ptr.cellPadding = value; }
29
30 String get cellSpacing() { return _ptr.cellSpacing; }
31
32 void set cellSpacing(String value) { _ptr.cellSpacing = value; }
33
34 String get frame() { return _ptr.frame; }
35
36 void set frame(String value) { _ptr.frame = value; }
37
38 ElementList get rows() { return LevelDom.wrapElementList(_ptr.rows); }
39
40 String get rules() { return _ptr.rules; }
41
42 void set rules(String value) { _ptr.rules = value; }
43
44 String get summary() { return _ptr.summary; }
45
46 void set summary(String value) { _ptr.summary = value; }
47
48 ElementList get tBodies() { return LevelDom.wrapElementList(_ptr.tBodies); }
49
50 TableSectionElement get tFoot() { return LevelDom.wrapTableSectionElement(_ptr .tFoot); }
51
52 void set tFoot(TableSectionElement value) { _ptr.tFoot = LevelDom.unwrap(value ); }
53
54 TableSectionElement get tHead() { return LevelDom.wrapTableSectionElement(_ptr .tHead); }
55
56 void set tHead(TableSectionElement value) { _ptr.tHead = LevelDom.unwrap(value ); }
57
58 String get width() { return _ptr.width; }
59
60 void set width(String value) { _ptr.width = value; }
61
62 Element createCaption() {
63 return LevelDom.wrapElement(_ptr.createCaption());
64 }
65
66 Element createTFoot() {
67 return LevelDom.wrapElement(_ptr.createTFoot());
68 }
69
70 Element createTHead() {
71 return LevelDom.wrapElement(_ptr.createTHead());
72 }
73
74 void deleteCaption() {
75 _ptr.deleteCaption();
76 return;
77 }
78
79 void deleteRow(int index) {
80 _ptr.deleteRow(index);
81 return;
82 }
83
84 void deleteTFoot() {
85 _ptr.deleteTFoot();
86 return;
87 }
88
89 void deleteTHead() {
90 _ptr.deleteTHead();
91 return;
92 }
93
94 Element insertRow(int index) {
95 return LevelDom.wrapElement(_ptr.insertRow(index));
96 }
97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698