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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/src/wrapping/_TableElementWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_TableElementWrappingImplementation.dart b/client/html/generated/src/wrapping/_TableElementWrappingImplementation.dart
deleted file mode 100644
index 24917a14fc0d12495d149fe9a53b64bc2cfe293a..0000000000000000000000000000000000000000
--- a/client/html/generated/src/wrapping/_TableElementWrappingImplementation.dart
+++ /dev/null
@@ -1,97 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class TableElementWrappingImplementation extends ElementWrappingImplementation implements TableElement {
- TableElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- String get align() { return _ptr.align; }
-
- void set align(String value) { _ptr.align = value; }
-
- String get bgColor() { return _ptr.bgColor; }
-
- void set bgColor(String value) { _ptr.bgColor = value; }
-
- String get border() { return _ptr.border; }
-
- void set border(String value) { _ptr.border = value; }
-
- TableCaptionElement get caption() { return LevelDom.wrapTableCaptionElement(_ptr.caption); }
-
- void set caption(TableCaptionElement value) { _ptr.caption = LevelDom.unwrap(value); }
-
- String get cellPadding() { return _ptr.cellPadding; }
-
- void set cellPadding(String value) { _ptr.cellPadding = value; }
-
- String get cellSpacing() { return _ptr.cellSpacing; }
-
- void set cellSpacing(String value) { _ptr.cellSpacing = value; }
-
- String get frame() { return _ptr.frame; }
-
- void set frame(String value) { _ptr.frame = value; }
-
- ElementList get rows() { return LevelDom.wrapElementList(_ptr.rows); }
-
- String get rules() { return _ptr.rules; }
-
- void set rules(String value) { _ptr.rules = value; }
-
- String get summary() { return _ptr.summary; }
-
- void set summary(String value) { _ptr.summary = value; }
-
- ElementList get tBodies() { return LevelDom.wrapElementList(_ptr.tBodies); }
-
- TableSectionElement get tFoot() { return LevelDom.wrapTableSectionElement(_ptr.tFoot); }
-
- void set tFoot(TableSectionElement value) { _ptr.tFoot = LevelDom.unwrap(value); }
-
- TableSectionElement get tHead() { return LevelDom.wrapTableSectionElement(_ptr.tHead); }
-
- void set tHead(TableSectionElement value) { _ptr.tHead = LevelDom.unwrap(value); }
-
- String get width() { return _ptr.width; }
-
- void set width(String value) { _ptr.width = value; }
-
- Element createCaption() {
- return LevelDom.wrapElement(_ptr.createCaption());
- }
-
- Element createTFoot() {
- return LevelDom.wrapElement(_ptr.createTFoot());
- }
-
- Element createTHead() {
- return LevelDom.wrapElement(_ptr.createTHead());
- }
-
- void deleteCaption() {
- _ptr.deleteCaption();
- return;
- }
-
- void deleteRow(int index) {
- _ptr.deleteRow(index);
- return;
- }
-
- void deleteTFoot() {
- _ptr.deleteTFoot();
- return;
- }
-
- void deleteTHead() {
- _ptr.deleteTHead();
- return;
- }
-
- Element insertRow(int index) {
- return LevelDom.wrapElement(_ptr.insertRow(index));
- }
-}

Powered by Google App Engine
This is Rietveld 408576698