Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(911)

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLAnchorElementWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 _HTMLAnchorElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLAnchorElement {
8 _HTMLAnchorElementWrappingImplementation() : super() {}
9
10 static create__HTMLAnchorElementWrappingImplementation() native {
11 return new _HTMLAnchorElementWrappingImplementation();
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 String get coords() { return _get_coords(this); }
21 static String _get_coords(var _this) native;
22
23 void set coords(String value) { _set_coords(this, value); }
24 static void _set_coords(var _this, String value) native;
25
26 String get download() { return _get_download(this); }
27 static String _get_download(var _this) native;
28
29 void set download(String value) { _set_download(this, value); }
30 static void _set_download(var _this, String value) native;
31
32 String get hash() { return _get_hash(this); }
33 static String _get_hash(var _this) native;
34
35 void set hash(String value) { _set_hash(this, value); }
36 static void _set_hash(var _this, String value) native;
37
38 String get host() { return _get_host(this); }
39 static String _get_host(var _this) native;
40
41 void set host(String value) { _set_host(this, value); }
42 static void _set_host(var _this, String value) native;
43
44 String get hostname() { return _get_hostname(this); }
45 static String _get_hostname(var _this) native;
46
47 void set hostname(String value) { _set_hostname(this, value); }
48 static void _set_hostname(var _this, String value) native;
49
50 String get href() { return _get_href(this); }
51 static String _get_href(var _this) native;
52
53 void set href(String value) { _set_href(this, value); }
54 static void _set_href(var _this, String value) native;
55
56 String get hreflang() { return _get_hreflang(this); }
57 static String _get_hreflang(var _this) native;
58
59 void set hreflang(String value) { _set_hreflang(this, value); }
60 static void _set_hreflang(var _this, String value) native;
61
62 String get name() { return _get_name(this); }
63 static String _get_name(var _this) native;
64
65 void set name(String value) { _set_name(this, value); }
66 static void _set_name(var _this, String value) native;
67
68 String get origin() { return _get_origin(this); }
69 static String _get_origin(var _this) native;
70
71 String get pathname() { return _get_pathname(this); }
72 static String _get_pathname(var _this) native;
73
74 void set pathname(String value) { _set_pathname(this, value); }
75 static void _set_pathname(var _this, String value) native;
76
77 String get ping() { return _get_ping(this); }
78 static String _get_ping(var _this) native;
79
80 void set ping(String value) { _set_ping(this, value); }
81 static void _set_ping(var _this, String value) native;
82
83 String get port() { return _get_port(this); }
84 static String _get_port(var _this) native;
85
86 void set port(String value) { _set_port(this, value); }
87 static void _set_port(var _this, String value) native;
88
89 String get protocol() { return _get_protocol(this); }
90 static String _get_protocol(var _this) native;
91
92 void set protocol(String value) { _set_protocol(this, value); }
93 static void _set_protocol(var _this, String value) native;
94
95 String get rel() { return _get_rel(this); }
96 static String _get_rel(var _this) native;
97
98 void set rel(String value) { _set_rel(this, value); }
99 static void _set_rel(var _this, String value) native;
100
101 String get rev() { return _get_rev(this); }
102 static String _get_rev(var _this) native;
103
104 void set rev(String value) { _set_rev(this, value); }
105 static void _set_rev(var _this, String value) native;
106
107 String get search() { return _get_search(this); }
108 static String _get_search(var _this) native;
109
110 void set search(String value) { _set_search(this, value); }
111 static void _set_search(var _this, String value) native;
112
113 String get shape() { return _get_shape(this); }
114 static String _get_shape(var _this) native;
115
116 void set shape(String value) { _set_shape(this, value); }
117 static void _set_shape(var _this, String value) native;
118
119 String get target() { return _get_target(this); }
120 static String _get_target(var _this) native;
121
122 void set target(String value) { _set_target(this, value); }
123 static void _set_target(var _this, String value) native;
124
125 String get text() { return _get_text(this); }
126 static String _get_text(var _this) native;
127
128 String get type() { return _get_type(this); }
129 static String _get_type(var _this) native;
130
131 void set type(String value) { _set_type(this, value); }
132 static void _set_type(var _this, String value) native;
133
134 String toString() {
135 return _toString(this);
136 }
137 static String _toString(receiver) native;
138
139 String get typeName() { return "HTMLAnchorElement"; }
140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698