| OLD | NEW |
| (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 _HTMLTableCellElementWrappingImplementation extends _HTMLElementWrappingIm
plementation implements HTMLTableCellElement { | |
| 8 _HTMLTableCellElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__HTMLTableCellElementWrappingImplementation() native { | |
| 11 return new _HTMLTableCellElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 String get abbr() { return _get_abbr(this); } | |
| 15 static String _get_abbr(var _this) native; | |
| 16 | |
| 17 void set abbr(String value) { _set_abbr(this, value); } | |
| 18 static void _set_abbr(var _this, String value) native; | |
| 19 | |
| 20 String get align() { return _get_align(this); } | |
| 21 static String _get_align(var _this) native; | |
| 22 | |
| 23 void set align(String value) { _set_align(this, value); } | |
| 24 static void _set_align(var _this, String value) native; | |
| 25 | |
| 26 String get axis() { return _get_axis(this); } | |
| 27 static String _get_axis(var _this) native; | |
| 28 | |
| 29 void set axis(String value) { _set_axis(this, value); } | |
| 30 static void _set_axis(var _this, String value) native; | |
| 31 | |
| 32 String get bgColor() { return _get_bgColor(this); } | |
| 33 static String _get_bgColor(var _this) native; | |
| 34 | |
| 35 void set bgColor(String value) { _set_bgColor(this, value); } | |
| 36 static void _set_bgColor(var _this, String value) native; | |
| 37 | |
| 38 int get cellIndex() { return _get_cellIndex(this); } | |
| 39 static int _get_cellIndex(var _this) native; | |
| 40 | |
| 41 String get ch() { return _get_ch(this); } | |
| 42 static String _get_ch(var _this) native; | |
| 43 | |
| 44 void set ch(String value) { _set_ch(this, value); } | |
| 45 static void _set_ch(var _this, String value) native; | |
| 46 | |
| 47 String get chOff() { return _get_chOff(this); } | |
| 48 static String _get_chOff(var _this) native; | |
| 49 | |
| 50 void set chOff(String value) { _set_chOff(this, value); } | |
| 51 static void _set_chOff(var _this, String value) native; | |
| 52 | |
| 53 int get colSpan() { return _get_colSpan(this); } | |
| 54 static int _get_colSpan(var _this) native; | |
| 55 | |
| 56 void set colSpan(int value) { _set_colSpan(this, value); } | |
| 57 static void _set_colSpan(var _this, int value) native; | |
| 58 | |
| 59 String get headers() { return _get_headers(this); } | |
| 60 static String _get_headers(var _this) native; | |
| 61 | |
| 62 void set headers(String value) { _set_headers(this, value); } | |
| 63 static void _set_headers(var _this, String value) native; | |
| 64 | |
| 65 String get height() { return _get_height(this); } | |
| 66 static String _get_height(var _this) native; | |
| 67 | |
| 68 void set height(String value) { _set_height(this, value); } | |
| 69 static void _set_height(var _this, String value) native; | |
| 70 | |
| 71 bool get noWrap() { return _get_noWrap(this); } | |
| 72 static bool _get_noWrap(var _this) native; | |
| 73 | |
| 74 void set noWrap(bool value) { _set_noWrap(this, value); } | |
| 75 static void _set_noWrap(var _this, bool value) native; | |
| 76 | |
| 77 int get rowSpan() { return _get_rowSpan(this); } | |
| 78 static int _get_rowSpan(var _this) native; | |
| 79 | |
| 80 void set rowSpan(int value) { _set_rowSpan(this, value); } | |
| 81 static void _set_rowSpan(var _this, int value) native; | |
| 82 | |
| 83 String get scope() { return _get_scope(this); } | |
| 84 static String _get_scope(var _this) native; | |
| 85 | |
| 86 void set scope(String value) { _set_scope(this, value); } | |
| 87 static void _set_scope(var _this, String value) native; | |
| 88 | |
| 89 String get vAlign() { return _get_vAlign(this); } | |
| 90 static String _get_vAlign(var _this) native; | |
| 91 | |
| 92 void set vAlign(String value) { _set_vAlign(this, value); } | |
| 93 static void _set_vAlign(var _this, String value) native; | |
| 94 | |
| 95 String get width() { return _get_width(this); } | |
| 96 static String _get_width(var _this) native; | |
| 97 | |
| 98 void set width(String value) { _set_width(this, value); } | |
| 99 static void _set_width(var _this, String value) native; | |
| 100 | |
| 101 String get typeName() { return "HTMLTableCellElement"; } | |
| 102 } | |
| OLD | NEW |