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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGMarkerElementWrappingImplementation.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 _SVGMarkerElementWrappingImplementation extends _SVGElementWrappingImpleme ntation implements SVGMarkerElement {
8 _SVGMarkerElementWrappingImplementation() : super() {}
9
10 static create__SVGMarkerElementWrappingImplementation() native {
11 return new _SVGMarkerElementWrappingImplementation();
12 }
13
14 SVGAnimatedLength get markerHeight() { return _get_markerHeight(this); }
15 static SVGAnimatedLength _get_markerHeight(var _this) native;
16
17 SVGAnimatedEnumeration get markerUnits() { return _get_markerUnits(this); }
18 static SVGAnimatedEnumeration _get_markerUnits(var _this) native;
19
20 SVGAnimatedLength get markerWidth() { return _get_markerWidth(this); }
21 static SVGAnimatedLength _get_markerWidth(var _this) native;
22
23 SVGAnimatedAngle get orientAngle() { return _get_orientAngle(this); }
24 static SVGAnimatedAngle _get_orientAngle(var _this) native;
25
26 SVGAnimatedEnumeration get orientType() { return _get_orientType(this); }
27 static SVGAnimatedEnumeration _get_orientType(var _this) native;
28
29 SVGAnimatedLength get refX() { return _get_refX(this); }
30 static SVGAnimatedLength _get_refX(var _this) native;
31
32 SVGAnimatedLength get refY() { return _get_refY(this); }
33 static SVGAnimatedLength _get_refY(var _this) native;
34
35 void setOrientToAngle(SVGAngle angle) {
36 _setOrientToAngle(this, angle);
37 return;
38 }
39 static void _setOrientToAngle(receiver, angle) native;
40
41 void setOrientToAuto() {
42 _setOrientToAuto(this);
43 return;
44 }
45 static void _setOrientToAuto(receiver) native;
46
47 // From SVGLangSpace
48
49 String get xmllang() { return _get_xmllang(this); }
50 static String _get_xmllang(var _this) native;
51
52 void set xmllang(String value) { _set_xmllang(this, value); }
53 static void _set_xmllang(var _this, String value) native;
54
55 String get xmlspace() { return _get_xmlspace(this); }
56 static String _get_xmlspace(var _this) native;
57
58 void set xmlspace(String value) { _set_xmlspace(this, value); }
59 static void _set_xmlspace(var _this, String value) native;
60
61 // From SVGExternalResourcesRequired
62
63 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
64 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
65
66 // From SVGStylable
67
68 SVGAnimatedString get className() { return _get_className(this); }
69 static SVGAnimatedString _get_className(var _this) native;
70
71 CSSStyleDeclaration get style() { return _get_style_SVGMarkerElement(this); }
72 static CSSStyleDeclaration _get_style_SVGMarkerElement(var _this) native;
73
74 CSSValue getPresentationAttribute(String name) {
75 return _getPresentationAttribute(this, name);
76 }
77 static CSSValue _getPresentationAttribute(receiver, name) native;
78
79 // From SVGFitToViewBox
80
81 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserv eAspectRatio(this); }
82 static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) nati ve;
83
84 SVGAnimatedRect get viewBox() { return _get_viewBox(this); }
85 static SVGAnimatedRect _get_viewBox(var _this) native;
86
87 String get typeName() { return "SVGMarkerElement"; }
88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698