| 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 InputElementWrappingImplementation extends ElementWrappingImplementation i
mplements InputElement { | 7 class InputElementWrappingImplementation extends ElementWrappingImplementation i
mplements InputElement { |
| 8 InputElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | 8 InputElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 | 9 |
| 10 String get accept() { return _ptr.accept; } | 10 String get accept() { return _ptr.accept; } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 void set min(String value) { _ptr.min = value; } | 96 void set min(String value) { _ptr.min = value; } |
| 97 | 97 |
| 98 bool get multiple() { return _ptr.multiple; } | 98 bool get multiple() { return _ptr.multiple; } |
| 99 | 99 |
| 100 void set multiple(bool value) { _ptr.multiple = value; } | 100 void set multiple(bool value) { _ptr.multiple = value; } |
| 101 | 101 |
| 102 String get name() { return _ptr.name; } | 102 String get name() { return _ptr.name; } |
| 103 | 103 |
| 104 void set name(String value) { _ptr.name = value; } | 104 void set name(String value) { _ptr.name = value; } |
| 105 | 105 |
| 106 EventListener get onwebkitspeechchange() { return LevelDom.wrapEventListener(_
ptr.onwebkitspeechchange); } | |
| 107 | |
| 108 void set onwebkitspeechchange(EventListener value) { _ptr.onwebkitspeechchange
= LevelDom.unwrap(value); } | |
| 109 | |
| 110 String get pattern() { return _ptr.pattern; } | 106 String get pattern() { return _ptr.pattern; } |
| 111 | 107 |
| 112 void set pattern(String value) { _ptr.pattern = value; } | 108 void set pattern(String value) { _ptr.pattern = value; } |
| 113 | 109 |
| 114 String get placeholder() { return _ptr.placeholder; } | 110 String get placeholder() { return _ptr.placeholder; } |
| 115 | 111 |
| 116 void set placeholder(String value) { _ptr.placeholder = value; } | 112 void set placeholder(String value) { _ptr.placeholder = value; } |
| 117 | 113 |
| 118 bool get readOnly() { return _ptr.readOnly; } | 114 bool get readOnly() { return _ptr.readOnly; } |
| 119 | 115 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 void setSelectionRange(int start, int end, [String direction = null]) { | 205 void setSelectionRange(int start, int end, [String direction = null]) { |
| 210 if (direction === null) { | 206 if (direction === null) { |
| 211 _ptr.setSelectionRange(start, end); | 207 _ptr.setSelectionRange(start, end); |
| 212 return; | 208 return; |
| 213 } else { | 209 } else { |
| 214 _ptr.setSelectionRange(start, end, direction); | 210 _ptr.setSelectionRange(start, end, direction); |
| 215 return; | 211 return; |
| 216 } | 212 } |
| 217 } | 213 } |
| 218 | 214 |
| 219 void setValueForUser(String value) { | |
| 220 _ptr.setValueForUser(value); | |
| 221 return; | |
| 222 } | |
| 223 | |
| 224 void stepDown([int n = null]) { | 215 void stepDown([int n = null]) { |
| 225 if (n === null) { | 216 if (n === null) { |
| 226 _ptr.stepDown(); | 217 _ptr.stepDown(); |
| 227 return; | 218 return; |
| 228 } else { | 219 } else { |
| 229 _ptr.stepDown(n); | 220 _ptr.stepDown(n); |
| 230 return; | 221 return; |
| 231 } | 222 } |
| 232 } | 223 } |
| 233 | 224 |
| 234 void stepUp([int n = null]) { | 225 void stepUp([int n = null]) { |
| 235 if (n === null) { | 226 if (n === null) { |
| 236 _ptr.stepUp(); | 227 _ptr.stepUp(); |
| 237 return; | 228 return; |
| 238 } else { | 229 } else { |
| 239 _ptr.stepUp(n); | 230 _ptr.stepUp(n); |
| 240 return; | 231 return; |
| 241 } | 232 } |
| 242 } | 233 } |
| 243 } | 234 } |
| OLD | NEW |