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

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

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
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 _HTMLAnchorElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLAnchorElement { 7 class _HTMLAnchorElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLAnchorElement {
8 _HTMLAnchorElementWrappingImplementation() : super() {} 8 _HTMLAnchorElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLAnchorElementWrappingImplementation() native { 10 static create__HTMLAnchorElementWrappingImplementation() native {
11 return new _HTMLAnchorElementWrappingImplementation(); 11 return new _HTMLAnchorElementWrappingImplementation();
12 } 12 }
13 13
14 String get accessKey() { return _get_accessKey(this); }
15 static String _get_accessKey(var _this) native;
16
17 void set accessKey(String value) { _set_accessKey(this, value); }
18 static void _set_accessKey(var _this, String value) native;
19
14 String get charset() { return _get_charset(this); } 20 String get charset() { return _get_charset(this); }
15 static String _get_charset(var _this) native; 21 static String _get_charset(var _this) native;
16 22
17 void set charset(String value) { _set_charset(this, value); } 23 void set charset(String value) { _set_charset(this, value); }
18 static void _set_charset(var _this, String value) native; 24 static void _set_charset(var _this, String value) native;
19 25
20 String get coords() { return _get_coords(this); } 26 String get coords() { return _get_coords(this); }
21 static String _get_coords(var _this) native; 27 static String _get_coords(var _this) native;
22 28
23 void set coords(String value) { _set_coords(this, value); } 29 void set coords(String value) { _set_coords(this, value); }
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 130
125 String get text() { return _get_text(this); } 131 String get text() { return _get_text(this); }
126 static String _get_text(var _this) native; 132 static String _get_text(var _this) native;
127 133
128 String get type() { return _get_type(this); } 134 String get type() { return _get_type(this); }
129 static String _get_type(var _this) native; 135 static String _get_type(var _this) native;
130 136
131 void set type(String value) { _set_type(this, value); } 137 void set type(String value) { _set_type(this, value); }
132 static void _set_type(var _this, String value) native; 138 static void _set_type(var _this, String value) native;
133 139
140 String getParameter(String name) {
141 return _getParameter(this, name);
142 }
143 static String _getParameter(receiver, name) native;
144
134 String toString() { 145 String toString() {
135 return _toString(this); 146 return _toString(this);
136 } 147 }
137 static String _toString(receiver) native; 148 static String _toString(receiver) native;
138 149
139 String get typeName() { return "HTMLAnchorElement"; } 150 String get typeName() { return "HTMLAnchorElement"; }
140 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698