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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _HTMLKeygenElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLKeygenElement {
8 _HTMLKeygenElementWrappingImplementation() : super() {}
9
10 static create__HTMLKeygenElementWrappingImplementation() native {
11 return new _HTMLKeygenElementWrappingImplementation();
12 }
13
14 bool get autofocus() { return _get_autofocus(this); }
15 static bool _get_autofocus(var _this) native;
16
17 void set autofocus(bool value) { _set_autofocus(this, value); }
18 static void _set_autofocus(var _this, bool value) native;
19
20 String get challenge() { return _get_challenge(this); }
21 static String _get_challenge(var _this) native;
22
23 void set challenge(String value) { _set_challenge(this, value); }
24 static void _set_challenge(var _this, String value) native;
25
26 bool get disabled() { return _get_disabled(this); }
27 static bool _get_disabled(var _this) native;
28
29 void set disabled(bool value) { _set_disabled(this, value); }
30 static void _set_disabled(var _this, bool value) native;
31
32 HTMLFormElement get form() { return _get_form(this); }
33 static HTMLFormElement _get_form(var _this) native;
34
35 String get keytype() { return _get_keytype(this); }
36 static String _get_keytype(var _this) native;
37
38 void set keytype(String value) { _set_keytype(this, value); }
39 static void _set_keytype(var _this, String value) native;
40
41 NodeList get labels() { return _get_labels(this); }
42 static NodeList _get_labels(var _this) native;
43
44 String get name() { return _get_name(this); }
45 static String _get_name(var _this) native;
46
47 void set name(String value) { _set_name(this, value); }
48 static void _set_name(var _this, String value) native;
49
50 String get type() { return _get_type(this); }
51 static String _get_type(var _this) native;
52
53 String get validationMessage() { return _get_validationMessage(this); }
54 static String _get_validationMessage(var _this) native;
55
56 ValidityState get validity() { return _get_validity(this); }
57 static ValidityState _get_validity(var _this) native;
58
59 bool get willValidate() { return _get_willValidate(this); }
60 static bool _get_willValidate(var _this) native;
61
62 bool checkValidity() {
63 return _checkValidity(this);
64 }
65 static bool _checkValidity(receiver) native;
66
67 void setCustomValidity(String error) {
68 _setCustomValidity(this, error);
69 return;
70 }
71 static void _setCustomValidity(receiver, error) native;
72
73 String get typeName() { return "HTMLKeygenElement"; }
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698