| 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 _HTMLInputElementWrappingImplementation extends _HTMLElementWrappingImplem
entation implements HTMLInputElement { | 7 class _HTMLInputElementWrappingImplementation extends _HTMLElementWrappingImplem
entation implements HTMLInputElement { |
| 8 _HTMLInputElementWrappingImplementation() : super() {} | 8 _HTMLInputElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLInputElementWrappingImplementation() native { | 10 static create__HTMLInputElementWrappingImplementation() native { |
| 11 return new _HTMLInputElementWrappingImplementation(); | 11 return new _HTMLInputElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get accept() { return _get_accept(this); } | 14 String get accept() { return _get_accept(this); } |
| 15 static String _get_accept(var _this) native; | 15 static String _get_accept(var _this) native; |
| 16 | 16 |
| 17 void set accept(String value) { _set_accept(this, value); } | 17 void set accept(String value) { _set_accept(this, value); } |
| 18 static void _set_accept(var _this, String value) native; | 18 static void _set_accept(var _this, String value) native; |
| 19 | 19 |
| 20 String get accessKey() { return _get_accessKey(this); } |
| 21 static String _get_accessKey(var _this) native; |
| 22 |
| 23 void set accessKey(String value) { _set_accessKey(this, value); } |
| 24 static void _set_accessKey(var _this, String value) native; |
| 25 |
| 20 String get align() { return _get_align(this); } | 26 String get align() { return _get_align(this); } |
| 21 static String _get_align(var _this) native; | 27 static String _get_align(var _this) native; |
| 22 | 28 |
| 23 void set align(String value) { _set_align(this, value); } | 29 void set align(String value) { _set_align(this, value); } |
| 24 static void _set_align(var _this, String value) native; | 30 static void _set_align(var _this, String value) native; |
| 25 | 31 |
| 26 String get alt() { return _get_alt(this); } | 32 String get alt() { return _get_alt(this); } |
| 27 static String _get_alt(var _this) native; | 33 static String _get_alt(var _this) native; |
| 28 | 34 |
| 29 void set alt(String value) { _set_alt(this, value); } | 35 void set alt(String value) { _set_alt(this, value); } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 52 | 58 |
| 53 void set defaultChecked(bool value) { _set_defaultChecked(this, value); } | 59 void set defaultChecked(bool value) { _set_defaultChecked(this, value); } |
| 54 static void _set_defaultChecked(var _this, bool value) native; | 60 static void _set_defaultChecked(var _this, bool value) native; |
| 55 | 61 |
| 56 String get defaultValue() { return _get_defaultValue(this); } | 62 String get defaultValue() { return _get_defaultValue(this); } |
| 57 static String _get_defaultValue(var _this) native; | 63 static String _get_defaultValue(var _this) native; |
| 58 | 64 |
| 59 void set defaultValue(String value) { _set_defaultValue(this, value); } | 65 void set defaultValue(String value) { _set_defaultValue(this, value); } |
| 60 static void _set_defaultValue(var _this, String value) native; | 66 static void _set_defaultValue(var _this, String value) native; |
| 61 | 67 |
| 62 String get dirName() { return _get_dirName(this); } | |
| 63 static String _get_dirName(var _this) native; | |
| 64 | |
| 65 void set dirName(String value) { _set_dirName(this, value); } | |
| 66 static void _set_dirName(var _this, String value) native; | |
| 67 | |
| 68 bool get disabled() { return _get_disabled(this); } | 68 bool get disabled() { return _get_disabled(this); } |
| 69 static bool _get_disabled(var _this) native; | 69 static bool _get_disabled(var _this) native; |
| 70 | 70 |
| 71 void set disabled(bool value) { _set_disabled(this, value); } | 71 void set disabled(bool value) { _set_disabled(this, value); } |
| 72 static void _set_disabled(var _this, bool value) native; | 72 static void _set_disabled(var _this, bool value) native; |
| 73 | 73 |
| 74 FileList get files() { return _get_files(this); } | 74 FileList get files() { return _get_files(this); } |
| 75 static FileList _get_files(var _this) native; | 75 static FileList _get_files(var _this) native; |
| 76 | 76 |
| 77 HTMLFormElement get form() { return _get_form(this); } | 77 HTMLFormElement get form() { return _get_form(this); } |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 } else { | 329 } else { |
| 330 _stepUp_2(this, n); | 330 _stepUp_2(this, n); |
| 331 return; | 331 return; |
| 332 } | 332 } |
| 333 } | 333 } |
| 334 static void _stepUp(receiver) native; | 334 static void _stepUp(receiver) native; |
| 335 static void _stepUp_2(receiver, n) native; | 335 static void _stepUp_2(receiver, n) native; |
| 336 | 336 |
| 337 String get typeName() { return "HTMLInputElement"; } | 337 String get typeName() { return "HTMLInputElement"; } |
| 338 } | 338 } |
| OLD | NEW |