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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLMarqueeElementWrappingImplementation.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 _HTMLMarqueeElementWrappingImplementation extends _HTMLElementWrappingImpl ementation implements HTMLMarqueeElement {
8 _HTMLMarqueeElementWrappingImplementation() : super() {}
9
10 static create__HTMLMarqueeElementWrappingImplementation() native {
11 return new _HTMLMarqueeElementWrappingImplementation();
12 }
13
14 String get behavior() { return _get_behavior(this); }
15 static String _get_behavior(var _this) native;
16
17 void set behavior(String value) { _set_behavior(this, value); }
18 static void _set_behavior(var _this, String value) native;
19
20 String get bgColor() { return _get_bgColor(this); }
21 static String _get_bgColor(var _this) native;
22
23 void set bgColor(String value) { _set_bgColor(this, value); }
24 static void _set_bgColor(var _this, String value) native;
25
26 String get direction() { return _get_direction(this); }
27 static String _get_direction(var _this) native;
28
29 void set direction(String value) { _set_direction(this, value); }
30 static void _set_direction(var _this, String value) native;
31
32 String get height() { return _get_height(this); }
33 static String _get_height(var _this) native;
34
35 void set height(String value) { _set_height(this, value); }
36 static void _set_height(var _this, String value) native;
37
38 int get hspace() { return _get_hspace(this); }
39 static int _get_hspace(var _this) native;
40
41 void set hspace(int value) { _set_hspace(this, value); }
42 static void _set_hspace(var _this, int value) native;
43
44 int get loop() { return _get_loop(this); }
45 static int _get_loop(var _this) native;
46
47 void set loop(int value) { _set_loop(this, value); }
48 static void _set_loop(var _this, int value) native;
49
50 int get scrollAmount() { return _get_scrollAmount(this); }
51 static int _get_scrollAmount(var _this) native;
52
53 void set scrollAmount(int value) { _set_scrollAmount(this, value); }
54 static void _set_scrollAmount(var _this, int value) native;
55
56 int get scrollDelay() { return _get_scrollDelay(this); }
57 static int _get_scrollDelay(var _this) native;
58
59 void set scrollDelay(int value) { _set_scrollDelay(this, value); }
60 static void _set_scrollDelay(var _this, int value) native;
61
62 bool get trueSpeed() { return _get_trueSpeed(this); }
63 static bool _get_trueSpeed(var _this) native;
64
65 void set trueSpeed(bool value) { _set_trueSpeed(this, value); }
66 static void _set_trueSpeed(var _this, bool value) native;
67
68 int get vspace() { return _get_vspace(this); }
69 static int _get_vspace(var _this) native;
70
71 void set vspace(int value) { _set_vspace(this, value); }
72 static void _set_vspace(var _this, int value) native;
73
74 String get width() { return _get_width(this); }
75 static String _get_width(var _this) native;
76
77 void set width(String value) { _set_width(this, value); }
78 static void _set_width(var _this, String value) native;
79
80 void start() {
81 _start(this);
82 return;
83 }
84 static void _start(receiver) native;
85
86 void stop() {
87 _stop(this);
88 return;
89 }
90 static void _stop(receiver) native;
91
92 String get typeName() { return "HTMLMarqueeElement"; }
93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698