| OLD | NEW |
| 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 | |
| 20 String get charset() { return _get_charset(this); } | 14 String get charset() { return _get_charset(this); } |
| 21 static String _get_charset(var _this) native; | 15 static String _get_charset(var _this) native; |
| 22 | 16 |
| 23 void set charset(String value) { _set_charset(this, value); } | 17 void set charset(String value) { _set_charset(this, value); } |
| 24 static void _set_charset(var _this, String value) native; | 18 static void _set_charset(var _this, String value) native; |
| 25 | 19 |
| 26 String get coords() { return _get_coords(this); } | 20 String get coords() { return _get_coords(this); } |
| 27 static String _get_coords(var _this) native; | 21 static String _get_coords(var _this) native; |
| 28 | 22 |
| 29 void set coords(String value) { _set_coords(this, value); } | 23 void set coords(String value) { _set_coords(this, value); } |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 124 |
| 131 String get text() { return _get_text(this); } | 125 String get text() { return _get_text(this); } |
| 132 static String _get_text(var _this) native; | 126 static String _get_text(var _this) native; |
| 133 | 127 |
| 134 String get type() { return _get_type(this); } | 128 String get type() { return _get_type(this); } |
| 135 static String _get_type(var _this) native; | 129 static String _get_type(var _this) native; |
| 136 | 130 |
| 137 void set type(String value) { _set_type(this, value); } | 131 void set type(String value) { _set_type(this, value); } |
| 138 static void _set_type(var _this, String value) native; | 132 static void _set_type(var _this, String value) native; |
| 139 | 133 |
| 140 String getParameter(String name) { | |
| 141 return _getParameter(this, name); | |
| 142 } | |
| 143 static String _getParameter(receiver, name) native; | |
| 144 | |
| 145 String toString() { | 134 String toString() { |
| 146 return _toString(this); | 135 return _toString(this); |
| 147 } | 136 } |
| 148 static String _toString(receiver) native; | 137 static String _toString(receiver) native; |
| 149 | 138 |
| 150 String get typeName() { return "HTMLAnchorElement"; } | 139 String get typeName() { return "HTMLAnchorElement"; } |
| 151 } | 140 } |
| OLD | NEW |