| 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 TableRowElementWrappingImplementation extends ElementWrappingImplementatio
n implements TableRowElement { | |
| 8 TableRowElementWrappingImplementation._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 ElementList get cells() { return LevelDom.wrapElementList(_ptr.cells); } | |
| 19 | |
| 20 String get ch() { return _ptr.ch; } | |
| 21 | |
| 22 void set ch(String value) { _ptr.ch = value; } | |
| 23 | |
| 24 String get chOff() { return _ptr.chOff; } | |
| 25 | |
| 26 void set chOff(String value) { _ptr.chOff = value; } | |
| 27 | |
| 28 int get rowIndex() { return _ptr.rowIndex; } | |
| 29 | |
| 30 int get sectionRowIndex() { return _ptr.sectionRowIndex; } | |
| 31 | |
| 32 String get vAlign() { return _ptr.vAlign; } | |
| 33 | |
| 34 void set vAlign(String value) { _ptr.vAlign = value; } | |
| 35 | |
| 36 void deleteCell(int index) { | |
| 37 _ptr.deleteCell(index); | |
| 38 return; | |
| 39 } | |
| 40 | |
| 41 Element insertCell(int index) { | |
| 42 return LevelDom.wrapElement(_ptr.insertCell(index)); | |
| 43 } | |
| 44 } | |
| OLD | NEW |