Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLOptionElementWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 {
11 return new _HTMLOptionElementWrappingImplementation(); 11 return new _HTMLOptionElementWrappingImplementation();
12 } 12 }
13 13
14 bool get defaultSelected() { return _get__HTMLOptionElement_defaultSelected(th is); } 14 bool get defaultSelected() { return _get_defaultSelected(this); }
15 static bool _get__HTMLOptionElement_defaultSelected(var _this) native; 15 static bool _get_defaultSelected(var _this) native;
16 16
17 void set defaultSelected(bool value) { _set__HTMLOptionElement_defaultSelected (this, value); } 17 void set defaultSelected(bool value) { _set_defaultSelected(this, value); }
18 static void _set__HTMLOptionElement_defaultSelected(var _this, bool value) nat ive; 18 static void _set_defaultSelected(var _this, bool value) native;
19 19
20 bool get disabled() { return _get__HTMLOptionElement_disabled(this); } 20 bool get disabled() { return _get_disabled(this); }
21 static bool _get__HTMLOptionElement_disabled(var _this) native; 21 static bool _get_disabled(var _this) native;
22 22
23 void set disabled(bool value) { _set__HTMLOptionElement_disabled(this, value); } 23 void set disabled(bool value) { _set_disabled(this, value); }
24 static void _set__HTMLOptionElement_disabled(var _this, bool value) native; 24 static void _set_disabled(var _this, bool value) native;
25 25
26 HTMLFormElement get form() { return _get__HTMLOptionElement_form(this); } 26 HTMLFormElement get form() { return _get_form(this); }
27 static HTMLFormElement _get__HTMLOptionElement_form(var _this) native; 27 static HTMLFormElement _get_form(var _this) native;
28 28
29 int get index() { return _get__HTMLOptionElement_index(this); } 29 int get index() { return _get_index(this); }
30 static int _get__HTMLOptionElement_index(var _this) native; 30 static int _get_index(var _this) native;
31 31
32 String get label() { return _get__HTMLOptionElement_label(this); } 32 String get label() { return _get_label(this); }
33 static String _get__HTMLOptionElement_label(var _this) native; 33 static String _get_label(var _this) native;
34 34
35 void set label(String value) { _set__HTMLOptionElement_label(this, value); } 35 void set label(String value) { _set_label(this, value); }
36 static void _set__HTMLOptionElement_label(var _this, String value) native; 36 static void _set_label(var _this, String value) native;
37 37
38 bool get selected() { return _get__HTMLOptionElement_selected(this); } 38 bool get selected() { return _get_selected(this); }
39 static bool _get__HTMLOptionElement_selected(var _this) native; 39 static bool _get_selected(var _this) native;
40 40
41 void set selected(bool value) { _set__HTMLOptionElement_selected(this, value); } 41 void set selected(bool value) { _set_selected(this, value); }
42 static void _set__HTMLOptionElement_selected(var _this, bool value) native; 42 static void _set_selected(var _this, bool value) native;
43 43
44 String get text() { return _get__HTMLOptionElement_text(this); } 44 String get text() { return _get_text(this); }
45 static String _get__HTMLOptionElement_text(var _this) native; 45 static String _get_text(var _this) native;
46 46
47 void set text(String value) { _set__HTMLOptionElement_text(this, value); } 47 void set text(String value) { _set_text(this, value); }
48 static void _set__HTMLOptionElement_text(var _this, String value) native; 48 static void _set_text(var _this, String value) native;
49 49
50 String get value() { return _get__HTMLOptionElement_value(this); } 50 String get value() { return _get_value(this); }
51 static String _get__HTMLOptionElement_value(var _this) native; 51 static String _get_value(var _this) native;
52 52
53 void set value(String value) { _set__HTMLOptionElement_value(this, value); } 53 void set value(String value) { _set_value(this, value); }
54 static void _set__HTMLOptionElement_value(var _this, String value) native; 54 static void _set_value(var _this, String value) native;
55 55
56 String get typeName() { return "HTMLOptionElement"; } 56 String get typeName() { return "HTMLOptionElement"; }
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698