| 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 _HTMLHeadingElementWrappingImplementation extends _HTMLElementWrappingImpl
ementation implements HTMLHeadingElement { | 7 class _HTMLHeadingElementWrappingImplementation extends _HTMLElementWrappingImpl
ementation implements HTMLHeadingElement { |
| 8 _HTMLHeadingElementWrappingImplementation() : super() {} | 8 _HTMLHeadingElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLHeadingElementWrappingImplementation() native { | 10 static create__HTMLHeadingElementWrappingImplementation() native { |
| 11 return new _HTMLHeadingElementWrappingImplementation(); | 11 return new _HTMLHeadingElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get align() { return _get__HTMLHeadingElement_align(this); } | 14 String get align() { return _get_align(this); } |
| 15 static String _get__HTMLHeadingElement_align(var _this) native; | 15 static String _get_align(var _this) native; |
| 16 | 16 |
| 17 void set align(String value) { _set__HTMLHeadingElement_align(this, value); } | 17 void set align(String value) { _set_align(this, value); } |
| 18 static void _set__HTMLHeadingElement_align(var _this, String value) native; | 18 static void _set_align(var _this, String value) native; |
| 19 | 19 |
| 20 String get typeName() { return "HTMLHeadingElement"; } | 20 String get typeName() { return "HTMLHeadingElement"; } |
| 21 } | 21 } |
| OLD | NEW |