| OLD | NEW |
| (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 _HTMLBodyElementWrappingImplementation extends _HTMLElementWrappingImpleme
ntation implements HTMLBodyElement { | |
| 8 _HTMLBodyElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__HTMLBodyElementWrappingImplementation() native { | |
| 11 return new _HTMLBodyElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 String get aLink() { return _get_aLink(this); } | |
| 15 static String _get_aLink(var _this) native; | |
| 16 | |
| 17 void set aLink(String value) { _set_aLink(this, value); } | |
| 18 static void _set_aLink(var _this, String value) native; | |
| 19 | |
| 20 String get background() { return _get_background(this); } | |
| 21 static String _get_background(var _this) native; | |
| 22 | |
| 23 void set background(String value) { _set_background(this, value); } | |
| 24 static void _set_background(var _this, String value) native; | |
| 25 | |
| 26 String get bgColor() { return _get_bgColor(this); } | |
| 27 static String _get_bgColor(var _this) native; | |
| 28 | |
| 29 void set bgColor(String value) { _set_bgColor(this, value); } | |
| 30 static void _set_bgColor(var _this, String value) native; | |
| 31 | |
| 32 String get link() { return _get_link(this); } | |
| 33 static String _get_link(var _this) native; | |
| 34 | |
| 35 void set link(String value) { _set_link(this, value); } | |
| 36 static void _set_link(var _this, String value) native; | |
| 37 | |
| 38 String get text() { return _get_text(this); } | |
| 39 static String _get_text(var _this) native; | |
| 40 | |
| 41 void set text(String value) { _set_text(this, value); } | |
| 42 static void _set_text(var _this, String value) native; | |
| 43 | |
| 44 String get vLink() { return _get_vLink(this); } | |
| 45 static String _get_vLink(var _this) native; | |
| 46 | |
| 47 void set vLink(String value) { _set_vLink(this, value); } | |
| 48 static void _set_vLink(var _this, String value) native; | |
| 49 | |
| 50 String get typeName() { return "HTMLBodyElement"; } | |
| 51 } | |
| OLD | NEW |