| 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 _HTMLBRElementWrappingImplementation extends _HTMLElementWrappingImplement
ation implements HTMLBRElement { | 7 class _HTMLBRElementWrappingImplementation extends _HTMLElementWrappingImplement
ation implements HTMLBRElement { |
| 8 _HTMLBRElementWrappingImplementation() : super() {} | 8 _HTMLBRElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLBRElementWrappingImplementation() native { | 10 static create__HTMLBRElementWrappingImplementation() native { |
| 11 return new _HTMLBRElementWrappingImplementation(); | 11 return new _HTMLBRElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get clear() { return _get__HTMLBRElement_clear(this); } | 14 String get clear() { return _get_clear(this); } |
| 15 static String _get__HTMLBRElement_clear(var _this) native; | 15 static String _get_clear(var _this) native; |
| 16 | 16 |
| 17 void set clear(String value) { _set__HTMLBRElement_clear(this, value); } | 17 void set clear(String value) { _set_clear(this, value); } |
| 18 static void _set__HTMLBRElement_clear(var _this, String value) native; | 18 static void _set_clear(var _this, String value) native; |
| 19 | 19 |
| 20 String get typeName() { return "HTMLBRElement"; } | 20 String get typeName() { return "HTMLBRElement"; } |
| 21 } | 21 } |
| OLD | NEW |