| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _HTMLTableCaptionElementWrappingImplementation extends _HTMLElementWrappin
gImplementation implements HTMLTableCaptionElement { | 7 class _HTMLTableCaptionElementWrappingImplementation extends _HTMLElementWrappin
gImplementation implements HTMLTableCaptionElement { |
| 8 _HTMLTableCaptionElementWrappingImplementation() : super() {} | 8 _HTMLTableCaptionElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLTableCaptionElementWrappingImplementation() native { | 10 static create__HTMLTableCaptionElementWrappingImplementation() native { |
| 11 return new _HTMLTableCaptionElementWrappingImplementation(); | 11 return new _HTMLTableCaptionElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get align() { return _get__HTMLTableCaptionElement_align(this); } | 14 String get align() { return _get_align(this); } |
| 15 static String _get__HTMLTableCaptionElement_align(var _this) native; | 15 static String _get_align(var _this) native; |
| 16 | 16 |
| 17 void set align(String value) { _set__HTMLTableCaptionElement_align(this, value
); } | 17 void set align(String value) { _set_align(this, value); } |
| 18 static void _set__HTMLTableCaptionElement_align(var _this, String value) nativ
e; | 18 static void _set_align(var _this, String value) native; |
| 19 | 19 |
| 20 String get typeName() { return "HTMLTableCaptionElement"; } | 20 String get typeName() { return "HTMLTableCaptionElement"; } |
| 21 } | 21 } |
| OLD | NEW |