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 _HTMLLinkElementWrappingImplementation extends _HTMLElementWrappingImpleme
ntation implements HTMLLinkElement { | |
8 _HTMLLinkElementWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLLinkElementWrappingImplementation() native { | |
11 return new _HTMLLinkElementWrappingImplementation(); | |
12 } | |
13 | |
14 String get charset() { return _get_charset(this); } | |
15 static String _get_charset(var _this) native; | |
16 | |
17 void set charset(String value) { _set_charset(this, value); } | |
18 static void _set_charset(var _this, String value) native; | |
19 | |
20 bool get disabled() { return _get_disabled(this); } | |
21 static bool _get_disabled(var _this) native; | |
22 | |
23 void set disabled(bool value) { _set_disabled(this, value); } | |
24 static void _set_disabled(var _this, bool value) native; | |
25 | |
26 String get href() { return _get_href(this); } | |
27 static String _get_href(var _this) native; | |
28 | |
29 void set href(String value) { _set_href(this, value); } | |
30 static void _set_href(var _this, String value) native; | |
31 | |
32 String get hreflang() { return _get_hreflang(this); } | |
33 static String _get_hreflang(var _this) native; | |
34 | |
35 void set hreflang(String value) { _set_hreflang(this, value); } | |
36 static void _set_hreflang(var _this, String value) native; | |
37 | |
38 String get media() { return _get_media(this); } | |
39 static String _get_media(var _this) native; | |
40 | |
41 void set media(String value) { _set_media(this, value); } | |
42 static void _set_media(var _this, String value) native; | |
43 | |
44 String get rel() { return _get_rel(this); } | |
45 static String _get_rel(var _this) native; | |
46 | |
47 void set rel(String value) { _set_rel(this, value); } | |
48 static void _set_rel(var _this, String value) native; | |
49 | |
50 String get rev() { return _get_rev(this); } | |
51 static String _get_rev(var _this) native; | |
52 | |
53 void set rev(String value) { _set_rev(this, value); } | |
54 static void _set_rev(var _this, String value) native; | |
55 | |
56 StyleSheet get sheet() { return _get_sheet(this); } | |
57 static StyleSheet _get_sheet(var _this) native; | |
58 | |
59 DOMSettableTokenList get sizes() { return _get_sizes(this); } | |
60 static DOMSettableTokenList _get_sizes(var _this) native; | |
61 | |
62 void set sizes(DOMSettableTokenList value) { _set_sizes(this, value); } | |
63 static void _set_sizes(var _this, DOMSettableTokenList value) native; | |
64 | |
65 String get target() { return _get_target(this); } | |
66 static String _get_target(var _this) native; | |
67 | |
68 void set target(String value) { _set_target(this, value); } | |
69 static void _set_target(var _this, String value) native; | |
70 | |
71 String get type() { return _get_type(this); } | |
72 static String _get_type(var _this) native; | |
73 | |
74 void set type(String value) { _set_type(this, value); } | |
75 static void _set_type(var _this, String value) native; | |
76 | |
77 String get typeName() { return "HTMLLinkElement"; } | |
78 } | |
OLD | NEW |