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 _HTMLElementWrappingImplementation extends _ElementWrappingImplementation
implements HTMLElement { | |
8 _HTMLElementWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLElementWrappingImplementation() native { | |
11 return new _HTMLElementWrappingImplementation(); | |
12 } | |
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 HTMLCollection get children() { return _get_children(this); } | |
21 static HTMLCollection _get_children(var _this) native; | |
22 | |
23 DOMTokenList get classList() { return _get_classList(this); } | |
24 static DOMTokenList _get_classList(var _this) native; | |
25 | |
26 String get className() { return _get_className(this); } | |
27 static String _get_className(var _this) native; | |
28 | |
29 void set className(String value) { _set_className(this, value); } | |
30 static void _set_className(var _this, String value) native; | |
31 | |
32 String get contentEditable() { return _get_contentEditable(this); } | |
33 static String _get_contentEditable(var _this) native; | |
34 | |
35 void set contentEditable(String value) { _set_contentEditable(this, value); } | |
36 static void _set_contentEditable(var _this, String value) native; | |
37 | |
38 String get dir() { return _get_dir(this); } | |
39 static String _get_dir(var _this) native; | |
40 | |
41 void set dir(String value) { _set_dir(this, value); } | |
42 static void _set_dir(var _this, String value) native; | |
43 | |
44 bool get draggable() { return _get_draggable(this); } | |
45 static bool _get_draggable(var _this) native; | |
46 | |
47 void set draggable(bool value) { _set_draggable(this, value); } | |
48 static void _set_draggable(var _this, bool value) native; | |
49 | |
50 bool get hidden() { return _get_hidden(this); } | |
51 static bool _get_hidden(var _this) native; | |
52 | |
53 void set hidden(bool value) { _set_hidden(this, value); } | |
54 static void _set_hidden(var _this, bool value) native; | |
55 | |
56 String get id() { return _get_id(this); } | |
57 static String _get_id(var _this) native; | |
58 | |
59 void set id(String value) { _set_id(this, value); } | |
60 static void _set_id(var _this, String value) native; | |
61 | |
62 String get innerHTML() { return _get_innerHTML(this); } | |
63 static String _get_innerHTML(var _this) native; | |
64 | |
65 void set innerHTML(String value) { _set_innerHTML(this, value); } | |
66 static void _set_innerHTML(var _this, String value) native; | |
67 | |
68 String get innerText() { return _get_innerText(this); } | |
69 static String _get_innerText(var _this) native; | |
70 | |
71 void set innerText(String value) { _set_innerText(this, value); } | |
72 static void _set_innerText(var _this, String value) native; | |
73 | |
74 bool get isContentEditable() { return _get_isContentEditable(this); } | |
75 static bool _get_isContentEditable(var _this) native; | |
76 | |
77 String get lang() { return _get_lang(this); } | |
78 static String _get_lang(var _this) native; | |
79 | |
80 void set lang(String value) { _set_lang(this, value); } | |
81 static void _set_lang(var _this, String value) native; | |
82 | |
83 String get outerHTML() { return _get_outerHTML(this); } | |
84 static String _get_outerHTML(var _this) native; | |
85 | |
86 void set outerHTML(String value) { _set_outerHTML(this, value); } | |
87 static void _set_outerHTML(var _this, String value) native; | |
88 | |
89 String get outerText() { return _get_outerText(this); } | |
90 static String _get_outerText(var _this) native; | |
91 | |
92 void set outerText(String value) { _set_outerText(this, value); } | |
93 static void _set_outerText(var _this, String value) native; | |
94 | |
95 bool get spellcheck() { return _get_spellcheck(this); } | |
96 static bool _get_spellcheck(var _this) native; | |
97 | |
98 void set spellcheck(bool value) { _set_spellcheck(this, value); } | |
99 static void _set_spellcheck(var _this, bool value) native; | |
100 | |
101 int get tabIndex() { return _get_tabIndex(this); } | |
102 static int _get_tabIndex(var _this) native; | |
103 | |
104 void set tabIndex(int value) { _set_tabIndex(this, value); } | |
105 static void _set_tabIndex(var _this, int value) native; | |
106 | |
107 String get title() { return _get_title(this); } | |
108 static String _get_title(var _this) native; | |
109 | |
110 void set title(String value) { _set_title(this, value); } | |
111 static void _set_title(var _this, String value) native; | |
112 | |
113 bool get translate() { return _get_translate(this); } | |
114 static bool _get_translate(var _this) native; | |
115 | |
116 void set translate(bool value) { _set_translate(this, value); } | |
117 static void _set_translate(var _this, bool value) native; | |
118 | |
119 String get webkitdropzone() { return _get_webkitdropzone(this); } | |
120 static String _get_webkitdropzone(var _this) native; | |
121 | |
122 void set webkitdropzone(String value) { _set_webkitdropzone(this, value); } | |
123 static void _set_webkitdropzone(var _this, String value) native; | |
124 | |
125 void click() { | |
126 _click(this); | |
127 return; | |
128 } | |
129 static void _click(receiver) native; | |
130 | |
131 Element insertAdjacentElement(String where, Element element) { | |
132 return _insertAdjacentElement(this, where, element); | |
133 } | |
134 static Element _insertAdjacentElement(receiver, where, element) native; | |
135 | |
136 void insertAdjacentHTML(String where, String html) { | |
137 _insertAdjacentHTML(this, where, html); | |
138 return; | |
139 } | |
140 static void _insertAdjacentHTML(receiver, where, html) native; | |
141 | |
142 void insertAdjacentText(String where, String text) { | |
143 _insertAdjacentText(this, where, text); | |
144 return; | |
145 } | |
146 static void _insertAdjacentText(receiver, where, text) native; | |
147 | |
148 String get typeName() { return "HTMLElement"; } | |
149 } | |
OLD | NEW |