| 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 _HTMLTextAreaElementWrappingImplementation extends _HTMLElementWrappingImp
lementation implements HTMLTextAreaElement { | 7 class _HTMLTextAreaElementWrappingImplementation extends _HTMLElementWrappingImp
lementation implements HTMLTextAreaElement { |
| 8 _HTMLTextAreaElementWrappingImplementation() : super() {} | 8 _HTMLTextAreaElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLTextAreaElementWrappingImplementation() native { | 10 static create__HTMLTextAreaElementWrappingImplementation() native { |
| 11 return new _HTMLTextAreaElementWrappingImplementation(); | 11 return new _HTMLTextAreaElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get accessKey() { return _get_accessKey(this); } | |
| 15 static String _get_accessKey(var _this) native; | |
| 16 | |
| 17 void set accessKey(String value) { _set_accessKey(this, value); } | |
| 18 static void _set_accessKey(var _this, String value) native; | |
| 19 | |
| 20 bool get autofocus() { return _get_autofocus(this); } | 14 bool get autofocus() { return _get_autofocus(this); } |
| 21 static bool _get_autofocus(var _this) native; | 15 static bool _get_autofocus(var _this) native; |
| 22 | 16 |
| 23 void set autofocus(bool value) { _set_autofocus(this, value); } | 17 void set autofocus(bool value) { _set_autofocus(this, value); } |
| 24 static void _set_autofocus(var _this, bool value) native; | 18 static void _set_autofocus(var _this, bool value) native; |
| 25 | 19 |
| 26 int get cols() { return _get_cols(this); } | 20 int get cols() { return _get_cols(this); } |
| 27 static int _get_cols(var _this) native; | 21 static int _get_cols(var _this) native; |
| 28 | 22 |
| 29 void set cols(int value) { _set_cols(this, value); } | 23 void set cols(int value) { _set_cols(this, value); } |
| 30 static void _set_cols(var _this, int value) native; | 24 static void _set_cols(var _this, int value) native; |
| 31 | 25 |
| 32 String get defaultValue() { return _get_defaultValue(this); } | 26 String get defaultValue() { return _get_defaultValue(this); } |
| 33 static String _get_defaultValue(var _this) native; | 27 static String _get_defaultValue(var _this) native; |
| 34 | 28 |
| 35 void set defaultValue(String value) { _set_defaultValue(this, value); } | 29 void set defaultValue(String value) { _set_defaultValue(this, value); } |
| 36 static void _set_defaultValue(var _this, String value) native; | 30 static void _set_defaultValue(var _this, String value) native; |
| 37 | 31 |
| 32 String get dirName() { return _get_dirName(this); } |
| 33 static String _get_dirName(var _this) native; |
| 34 |
| 35 void set dirName(String value) { _set_dirName(this, value); } |
| 36 static void _set_dirName(var _this, String value) native; |
| 37 |
| 38 bool get disabled() { return _get_disabled(this); } | 38 bool get disabled() { return _get_disabled(this); } |
| 39 static bool _get_disabled(var _this) native; | 39 static bool _get_disabled(var _this) native; |
| 40 | 40 |
| 41 void set disabled(bool value) { _set_disabled(this, value); } | 41 void set disabled(bool value) { _set_disabled(this, value); } |
| 42 static void _set_disabled(var _this, bool value) native; | 42 static void _set_disabled(var _this, bool value) native; |
| 43 | 43 |
| 44 HTMLFormElement get form() { return _get_form(this); } | 44 HTMLFormElement get form() { return _get_form(this); } |
| 45 static HTMLFormElement _get_form(var _this) native; | 45 static HTMLFormElement _get_form(var _this) native; |
| 46 | 46 |
| 47 NodeList get labels() { return _get_labels(this); } | 47 NodeList get labels() { return _get_labels(this); } |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 } else { | 152 } else { |
| 153 _setSelectionRange_2(this, start, end, direction); | 153 _setSelectionRange_2(this, start, end, direction); |
| 154 return; | 154 return; |
| 155 } | 155 } |
| 156 } | 156 } |
| 157 static void _setSelectionRange(receiver, start, end) native; | 157 static void _setSelectionRange(receiver, start, end) native; |
| 158 static void _setSelectionRange_2(receiver, start, end, direction) native; | 158 static void _setSelectionRange_2(receiver, start, end, direction) native; |
| 159 | 159 |
| 160 String get typeName() { return "HTMLTextAreaElement"; } | 160 String get typeName() { return "HTMLTextAreaElement"; } |
| 161 } | 161 } |
| OLD | NEW |