| 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 _HTMLAreaElementWrappingImplementation extends _HTMLElementWrappingImpleme
ntation implements HTMLAreaElement { | 7 class _HTMLAreaElementWrappingImplementation extends _HTMLElementWrappingImpleme
ntation implements HTMLAreaElement { |
| 8 _HTMLAreaElementWrappingImplementation() : super() {} | 8 _HTMLAreaElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLAreaElementWrappingImplementation() native { | 10 static create__HTMLAreaElementWrappingImplementation() native { |
| 11 return new _HTMLAreaElementWrappingImplementation(); | 11 return new _HTMLAreaElementWrappingImplementation(); |
| 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 alt() { return _get_alt(this); } | 20 String get alt() { return _get_alt(this); } |
| 15 static String _get_alt(var _this) native; | 21 static String _get_alt(var _this) native; |
| 16 | 22 |
| 17 void set alt(String value) { _set_alt(this, value); } | 23 void set alt(String value) { _set_alt(this, value); } |
| 18 static void _set_alt(var _this, String value) native; | 24 static void _set_alt(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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 static void _set_shape(var _this, String value) native; | 75 static void _set_shape(var _this, String value) native; |
| 70 | 76 |
| 71 String get target() { return _get_target(this); } | 77 String get target() { return _get_target(this); } |
| 72 static String _get_target(var _this) native; | 78 static String _get_target(var _this) native; |
| 73 | 79 |
| 74 void set target(String value) { _set_target(this, value); } | 80 void set target(String value) { _set_target(this, value); } |
| 75 static void _set_target(var _this, String value) native; | 81 static void _set_target(var _this, String value) native; |
| 76 | 82 |
| 77 String get typeName() { return "HTMLAreaElement"; } | 83 String get typeName() { return "HTMLAreaElement"; } |
| 78 } | 84 } |
| OLD | NEW |