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 _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementatio
n implements HTMLDocument { | |
8 _HTMLDocumentWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLDocumentWrappingImplementation() native { | |
11 return new _HTMLDocumentWrappingImplementation(); | |
12 } | |
13 | |
14 Element get activeElement() { return _get_activeElement(this); } | |
15 static Element _get_activeElement(var _this) native; | |
16 | |
17 String get alinkColor() { return _get_alinkColor(this); } | |
18 static String _get_alinkColor(var _this) native; | |
19 | |
20 void set alinkColor(String value) { _set_alinkColor(this, value); } | |
21 static void _set_alinkColor(var _this, String value) native; | |
22 | |
23 HTMLAllCollection get all() { return _get_all(this); } | |
24 static HTMLAllCollection _get_all(var _this) native; | |
25 | |
26 void set all(HTMLAllCollection value) { _set_all(this, value); } | |
27 static void _set_all(var _this, HTMLAllCollection value) native; | |
28 | |
29 String get bgColor() { return _get_bgColor(this); } | |
30 static String _get_bgColor(var _this) native; | |
31 | |
32 void set bgColor(String value) { _set_bgColor(this, value); } | |
33 static void _set_bgColor(var _this, String value) native; | |
34 | |
35 String get compatMode() { return _get_compatMode_HTMLDocument(this); } | |
36 static String _get_compatMode_HTMLDocument(var _this) native; | |
37 | |
38 String get designMode() { return _get_designMode(this); } | |
39 static String _get_designMode(var _this) native; | |
40 | |
41 void set designMode(String value) { _set_designMode(this, value); } | |
42 static void _set_designMode(var _this, String value) native; | |
43 | |
44 String get dir() { return _get_dir(this); } | |
45 static String _get_dir(var _this) native; | |
46 | |
47 void set dir(String value) { _set_dir(this, value); } | |
48 static void _set_dir(var _this, String value) native; | |
49 | |
50 HTMLCollection get embeds() { return _get_embeds(this); } | |
51 static HTMLCollection _get_embeds(var _this) native; | |
52 | |
53 String get fgColor() { return _get_fgColor(this); } | |
54 static String _get_fgColor(var _this) native; | |
55 | |
56 void set fgColor(String value) { _set_fgColor(this, value); } | |
57 static void _set_fgColor(var _this, String value) native; | |
58 | |
59 String get linkColor() { return _get_linkColor(this); } | |
60 static String _get_linkColor(var _this) native; | |
61 | |
62 void set linkColor(String value) { _set_linkColor(this, value); } | |
63 static void _set_linkColor(var _this, String value) native; | |
64 | |
65 HTMLCollection get plugins() { return _get_plugins(this); } | |
66 static HTMLCollection _get_plugins(var _this) native; | |
67 | |
68 HTMLCollection get scripts() { return _get_scripts(this); } | |
69 static HTMLCollection _get_scripts(var _this) native; | |
70 | |
71 String get vlinkColor() { return _get_vlinkColor(this); } | |
72 static String _get_vlinkColor(var _this) native; | |
73 | |
74 void set vlinkColor(String value) { _set_vlinkColor(this, value); } | |
75 static void _set_vlinkColor(var _this, String value) native; | |
76 | |
77 void captureEvents() { | |
78 _captureEvents(this); | |
79 return; | |
80 } | |
81 static void _captureEvents(receiver) native; | |
82 | |
83 void clear() { | |
84 _clear(this); | |
85 return; | |
86 } | |
87 static void _clear(receiver) native; | |
88 | |
89 void close() { | |
90 _close(this); | |
91 return; | |
92 } | |
93 static void _close(receiver) native; | |
94 | |
95 bool hasFocus() { | |
96 return _hasFocus(this); | |
97 } | |
98 static bool _hasFocus(receiver) native; | |
99 | |
100 void open() { | |
101 _open(this); | |
102 return; | |
103 } | |
104 static void _open(receiver) native; | |
105 | |
106 void releaseEvents() { | |
107 _releaseEvents(this); | |
108 return; | |
109 } | |
110 static void _releaseEvents(receiver) native; | |
111 | |
112 void write(String text) { | |
113 _write(this, text); | |
114 return; | |
115 } | |
116 static void _write(receiver, text) native; | |
117 | |
118 void writeln(String text) { | |
119 _writeln(this, text); | |
120 return; | |
121 } | |
122 static void _writeln(receiver, text) native; | |
123 | |
124 String get typeName() { return "HTMLDocument"; } | |
125 } | |
OLD | NEW |