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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.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 _HTMLOutputElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLOutputElement { 7 class _HTMLOutputElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLOutputElement {
8 _HTMLOutputElementWrappingImplementation() : super() {} 8 _HTMLOutputElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLOutputElementWrappingImplementation() native { 10 static create__HTMLOutputElementWrappingImplementation() native {
11 return new _HTMLOutputElementWrappingImplementation(); 11 return new _HTMLOutputElementWrappingImplementation();
12 } 12 }
13 13
14 String get defaultValue() { return _get__HTMLOutputElement_defaultValue(this); } 14 String get defaultValue() { return _get_defaultValue(this); }
15 static String _get__HTMLOutputElement_defaultValue(var _this) native; 15 static String _get_defaultValue(var _this) native;
16 16
17 void set defaultValue(String value) { _set__HTMLOutputElement_defaultValue(thi s, value); } 17 void set defaultValue(String value) { _set_defaultValue(this, value); }
18 static void _set__HTMLOutputElement_defaultValue(var _this, String value) nati ve; 18 static void _set_defaultValue(var _this, String value) native;
19 19
20 HTMLFormElement get form() { return _get__HTMLOutputElement_form(this); } 20 HTMLFormElement get form() { return _get_form(this); }
21 static HTMLFormElement _get__HTMLOutputElement_form(var _this) native; 21 static HTMLFormElement _get_form(var _this) native;
22 22
23 DOMSettableTokenList get htmlFor() { return _get__HTMLOutputElement_htmlFor(th is); } 23 DOMSettableTokenList get htmlFor() { return _get_htmlFor(this); }
24 static DOMSettableTokenList _get__HTMLOutputElement_htmlFor(var _this) native; 24 static DOMSettableTokenList _get_htmlFor(var _this) native;
25 25
26 void set htmlFor(DOMSettableTokenList value) { _set__HTMLOutputElement_htmlFor (this, value); } 26 void set htmlFor(DOMSettableTokenList value) { _set_htmlFor(this, value); }
27 static void _set__HTMLOutputElement_htmlFor(var _this, DOMSettableTokenList va lue) native; 27 static void _set_htmlFor(var _this, DOMSettableTokenList value) native;
28 28
29 NodeList get labels() { return _get__HTMLOutputElement_labels(this); } 29 NodeList get labels() { return _get_labels(this); }
30 static NodeList _get__HTMLOutputElement_labels(var _this) native; 30 static NodeList _get_labels(var _this) native;
31 31
32 String get name() { return _get__HTMLOutputElement_name(this); } 32 String get name() { return _get_name(this); }
33 static String _get__HTMLOutputElement_name(var _this) native; 33 static String _get_name(var _this) native;
34 34
35 void set name(String value) { _set__HTMLOutputElement_name(this, value); } 35 void set name(String value) { _set_name(this, value); }
36 static void _set__HTMLOutputElement_name(var _this, String value) native; 36 static void _set_name(var _this, String value) native;
37 37
38 String get type() { return _get__HTMLOutputElement_type(this); } 38 String get type() { return _get_type(this); }
39 static String _get__HTMLOutputElement_type(var _this) native; 39 static String _get_type(var _this) native;
40 40
41 String get validationMessage() { return _get__HTMLOutputElement_validationMess age(this); } 41 String get validationMessage() { return _get_validationMessage(this); }
42 static String _get__HTMLOutputElement_validationMessage(var _this) native; 42 static String _get_validationMessage(var _this) native;
43 43
44 ValidityState get validity() { return _get__HTMLOutputElement_validity(this); } 44 ValidityState get validity() { return _get_validity(this); }
45 static ValidityState _get__HTMLOutputElement_validity(var _this) native; 45 static ValidityState _get_validity(var _this) native;
46 46
47 String get value() { return _get__HTMLOutputElement_value(this); } 47 String get value() { return _get_value(this); }
48 static String _get__HTMLOutputElement_value(var _this) native; 48 static String _get_value(var _this) native;
49 49
50 void set value(String value) { _set__HTMLOutputElement_value(this, value); } 50 void set value(String value) { _set_value(this, value); }
51 static void _set__HTMLOutputElement_value(var _this, String value) native; 51 static void _set_value(var _this, String value) native;
52 52
53 bool get willValidate() { return _get__HTMLOutputElement_willValidate(this); } 53 bool get willValidate() { return _get_willValidate(this); }
54 static bool _get__HTMLOutputElement_willValidate(var _this) native; 54 static bool _get_willValidate(var _this) native;
55 55
56 bool checkValidity() { 56 bool checkValidity() {
57 return _checkValidity(this); 57 return _checkValidity(this);
58 } 58 }
59 static bool _checkValidity(receiver) native; 59 static bool _checkValidity(receiver) native;
60 60
61 void setCustomValidity(String error) { 61 void setCustomValidity(String error) {
62 _setCustomValidity(this, error); 62 _setCustomValidity(this, error);
63 return; 63 return;
64 } 64 }
65 static void _setCustomValidity(receiver, error) native; 65 static void _setCustomValidity(receiver, error) native;
66 66
67 String get typeName() { return "HTMLOutputElement"; } 67 String get typeName() { return "HTMLOutputElement"; }
68 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698