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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLKeygenElementWrappingImplementation.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 _HTMLKeygenElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLKeygenElement { 7 class _HTMLKeygenElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLKeygenElement {
8 _HTMLKeygenElementWrappingImplementation() : super() {} 8 _HTMLKeygenElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLKeygenElementWrappingImplementation() native { 10 static create__HTMLKeygenElementWrappingImplementation() native {
11 return new _HTMLKeygenElementWrappingImplementation(); 11 return new _HTMLKeygenElementWrappingImplementation();
12 } 12 }
13 13
14 bool get autofocus() { return _get__HTMLKeygenElement_autofocus(this); } 14 bool get autofocus() { return _get_autofocus(this); }
15 static bool _get__HTMLKeygenElement_autofocus(var _this) native; 15 static bool _get_autofocus(var _this) native;
16 16
17 void set autofocus(bool value) { _set__HTMLKeygenElement_autofocus(this, value ); } 17 void set autofocus(bool value) { _set_autofocus(this, value); }
18 static void _set__HTMLKeygenElement_autofocus(var _this, bool value) native; 18 static void _set_autofocus(var _this, bool value) native;
19 19
20 String get challenge() { return _get__HTMLKeygenElement_challenge(this); } 20 String get challenge() { return _get_challenge(this); }
21 static String _get__HTMLKeygenElement_challenge(var _this) native; 21 static String _get_challenge(var _this) native;
22 22
23 void set challenge(String value) { _set__HTMLKeygenElement_challenge(this, val ue); } 23 void set challenge(String value) { _set_challenge(this, value); }
24 static void _set__HTMLKeygenElement_challenge(var _this, String value) native; 24 static void _set_challenge(var _this, String value) native;
25 25
26 bool get disabled() { return _get__HTMLKeygenElement_disabled(this); } 26 bool get disabled() { return _get_disabled(this); }
27 static bool _get__HTMLKeygenElement_disabled(var _this) native; 27 static bool _get_disabled(var _this) native;
28 28
29 void set disabled(bool value) { _set__HTMLKeygenElement_disabled(this, value); } 29 void set disabled(bool value) { _set_disabled(this, value); }
30 static void _set__HTMLKeygenElement_disabled(var _this, bool value) native; 30 static void _set_disabled(var _this, bool value) native;
31 31
32 HTMLFormElement get form() { return _get__HTMLKeygenElement_form(this); } 32 HTMLFormElement get form() { return _get_form(this); }
33 static HTMLFormElement _get__HTMLKeygenElement_form(var _this) native; 33 static HTMLFormElement _get_form(var _this) native;
34 34
35 String get keytype() { return _get__HTMLKeygenElement_keytype(this); } 35 String get keytype() { return _get_keytype(this); }
36 static String _get__HTMLKeygenElement_keytype(var _this) native; 36 static String _get_keytype(var _this) native;
37 37
38 void set keytype(String value) { _set__HTMLKeygenElement_keytype(this, value); } 38 void set keytype(String value) { _set_keytype(this, value); }
39 static void _set__HTMLKeygenElement_keytype(var _this, String value) native; 39 static void _set_keytype(var _this, String value) native;
40 40
41 NodeList get labels() { return _get__HTMLKeygenElement_labels(this); } 41 NodeList get labels() { return _get_labels(this); }
42 static NodeList _get__HTMLKeygenElement_labels(var _this) native; 42 static NodeList _get_labels(var _this) native;
43 43
44 String get name() { return _get__HTMLKeygenElement_name(this); } 44 String get name() { return _get_name(this); }
45 static String _get__HTMLKeygenElement_name(var _this) native; 45 static String _get_name(var _this) native;
46 46
47 void set name(String value) { _set__HTMLKeygenElement_name(this, value); } 47 void set name(String value) { _set_name(this, value); }
48 static void _set__HTMLKeygenElement_name(var _this, String value) native; 48 static void _set_name(var _this, String value) native;
49 49
50 String get type() { return _get__HTMLKeygenElement_type(this); } 50 String get type() { return _get_type(this); }
51 static String _get__HTMLKeygenElement_type(var _this) native; 51 static String _get_type(var _this) native;
52 52
53 String get validationMessage() { return _get__HTMLKeygenElement_validationMess age(this); } 53 String get validationMessage() { return _get_validationMessage(this); }
54 static String _get__HTMLKeygenElement_validationMessage(var _this) native; 54 static String _get_validationMessage(var _this) native;
55 55
56 ValidityState get validity() { return _get__HTMLKeygenElement_validity(this); } 56 ValidityState get validity() { return _get_validity(this); }
57 static ValidityState _get__HTMLKeygenElement_validity(var _this) native; 57 static ValidityState _get_validity(var _this) native;
58 58
59 bool get willValidate() { return _get__HTMLKeygenElement_willValidate(this); } 59 bool get willValidate() { return _get_willValidate(this); }
60 static bool _get__HTMLKeygenElement_willValidate(var _this) native; 60 static bool _get_willValidate(var _this) native;
61 61
62 bool checkValidity() { 62 bool checkValidity() {
63 return _checkValidity(this); 63 return _checkValidity(this);
64 } 64 }
65 static bool _checkValidity(receiver) native; 65 static bool _checkValidity(receiver) native;
66 66
67 void setCustomValidity(String error) { 67 void setCustomValidity(String error) {
68 _setCustomValidity(this, error); 68 _setCustomValidity(this, error);
69 return; 69 return;
70 } 70 }
71 static void _setCustomValidity(receiver, error) native; 71 static void _setCustomValidity(receiver, error) native;
72 72
73 String get typeName() { return "HTMLKeygenElement"; } 73 String get typeName() { return "HTMLKeygenElement"; }
74 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698