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

Side by Side Diff: client/html/generated/src/wrapping/_AnchorElementWrappingImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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 AnchorElementWrappingImplementation extends ElementWrappingImplementation implements AnchorElement {
8 AnchorElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get accessKey() { return _ptr.accessKey; }
11
12 void set accessKey(String value) { _ptr.accessKey = value; }
13
14 String get charset() { return _ptr.charset; }
15
16 void set charset(String value) { _ptr.charset = value; }
17
18 String get coords() { return _ptr.coords; }
19
20 void set coords(String value) { _ptr.coords = value; }
21
22 String get download() { return _ptr.download; }
23
24 void set download(String value) { _ptr.download = value; }
25
26 String get hash() { return _ptr.hash; }
27
28 void set hash(String value) { _ptr.hash = value; }
29
30 String get host() { return _ptr.host; }
31
32 void set host(String value) { _ptr.host = value; }
33
34 String get hostname() { return _ptr.hostname; }
35
36 void set hostname(String value) { _ptr.hostname = value; }
37
38 String get href() { return _ptr.href; }
39
40 void set href(String value) { _ptr.href = value; }
41
42 String get hreflang() { return _ptr.hreflang; }
43
44 void set hreflang(String value) { _ptr.hreflang = value; }
45
46 String get name() { return _ptr.name; }
47
48 void set name(String value) { _ptr.name = value; }
49
50 String get origin() { return _ptr.origin; }
51
52 String get pathname() { return _ptr.pathname; }
53
54 void set pathname(String value) { _ptr.pathname = value; }
55
56 String get ping() { return _ptr.ping; }
57
58 void set ping(String value) { _ptr.ping = value; }
59
60 String get port() { return _ptr.port; }
61
62 void set port(String value) { _ptr.port = value; }
63
64 String get protocol() { return _ptr.protocol; }
65
66 void set protocol(String value) { _ptr.protocol = value; }
67
68 String get rel() { return _ptr.rel; }
69
70 void set rel(String value) { _ptr.rel = value; }
71
72 String get rev() { return _ptr.rev; }
73
74 void set rev(String value) { _ptr.rev = value; }
75
76 String get search() { return _ptr.search; }
77
78 void set search(String value) { _ptr.search = value; }
79
80 String get shape() { return _ptr.shape; }
81
82 void set shape(String value) { _ptr.shape = value; }
83
84 String get target() { return _ptr.target; }
85
86 void set target(String value) { _ptr.target = value; }
87
88 String get text() { return _ptr.text; }
89
90 String get type() { return _ptr.type; }
91
92 void set type(String value) { _ptr.type = value; }
93
94 String getParameter(String name) {
95 return _ptr.getParameter(name);
96 }
97
98 String toString() {
99 return _ptr.toString();
100 }
101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698