| 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 _HTMLOptionElementWrappingImplementation extends _HTMLElementWrappingImple
mentation implements HTMLOptionElement { | 7 class _HTMLOptionElementWrappingImplementation extends _HTMLElementWrappingImple
mentation implements HTMLOptionElement { |
| 8 _HTMLOptionElementWrappingImplementation() : super() {} | 8 _HTMLOptionElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLOptionElementWrappingImplementation() native { | 10 static create__HTMLOptionElementWrappingImplementation() native { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 bool get selected() { return _get__HTMLOptionElement_selected(this); } | 38 bool get selected() { return _get__HTMLOptionElement_selected(this); } |
| 39 static bool _get__HTMLOptionElement_selected(var _this) native; | 39 static bool _get__HTMLOptionElement_selected(var _this) native; |
| 40 | 40 |
| 41 void set selected(bool value) { _set__HTMLOptionElement_selected(this, value);
} | 41 void set selected(bool value) { _set__HTMLOptionElement_selected(this, value);
} |
| 42 static void _set__HTMLOptionElement_selected(var _this, bool value) native; | 42 static void _set__HTMLOptionElement_selected(var _this, bool value) native; |
| 43 | 43 |
| 44 String get text() { return _get__HTMLOptionElement_text(this); } | 44 String get text() { return _get__HTMLOptionElement_text(this); } |
| 45 static String _get__HTMLOptionElement_text(var _this) native; | 45 static String _get__HTMLOptionElement_text(var _this) native; |
| 46 | 46 |
| 47 void set text(String value) { _set__HTMLOptionElement_text(this, value); } |
| 48 static void _set__HTMLOptionElement_text(var _this, String value) native; |
| 49 |
| 47 String get value() { return _get__HTMLOptionElement_value(this); } | 50 String get value() { return _get__HTMLOptionElement_value(this); } |
| 48 static String _get__HTMLOptionElement_value(var _this) native; | 51 static String _get__HTMLOptionElement_value(var _this) native; |
| 49 | 52 |
| 50 void set value(String value) { _set__HTMLOptionElement_value(this, value); } | 53 void set value(String value) { _set__HTMLOptionElement_value(this, value); } |
| 51 static void _set__HTMLOptionElement_value(var _this, String value) native; | 54 static void _set__HTMLOptionElement_value(var _this, String value) native; |
| 52 | 55 |
| 53 String get typeName() { return "HTMLOptionElement"; } | 56 String get typeName() { return "HTMLOptionElement"; } |
| 54 } | 57 } |
| OLD | NEW |