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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGUseElementWrappingImplementation.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 _SVGUseElementWrappingImplementation extends _SVGElementWrappingImplementa tion implements SVGUseElement {
8 _SVGUseElementWrappingImplementation() : super() {}
9
10 static create__SVGUseElementWrappingImplementation() native {
11 return new _SVGUseElementWrappingImplementation();
12 }
13
14 SVGElementInstance get animatedInstanceRoot() { return _get_animatedInstanceRo ot(this); }
15 static SVGElementInstance _get_animatedInstanceRoot(var _this) native;
16
17 SVGAnimatedLength get height() { return _get_height(this); }
18 static SVGAnimatedLength _get_height(var _this) native;
19
20 SVGElementInstance get instanceRoot() { return _get_instanceRoot(this); }
21 static SVGElementInstance _get_instanceRoot(var _this) native;
22
23 SVGAnimatedLength get width() { return _get_width(this); }
24 static SVGAnimatedLength _get_width(var _this) native;
25
26 SVGAnimatedLength get x() { return _get_x(this); }
27 static SVGAnimatedLength _get_x(var _this) native;
28
29 SVGAnimatedLength get y() { return _get_y(this); }
30 static SVGAnimatedLength _get_y(var _this) native;
31
32 // From SVGURIReference
33
34 SVGAnimatedString get href() { return _get_href(this); }
35 static SVGAnimatedString _get_href(var _this) native;
36
37 // From SVGTests
38
39 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this); }
40 static SVGStringList _get_requiredExtensions(var _this) native;
41
42 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); }
43 static SVGStringList _get_requiredFeatures(var _this) native;
44
45 SVGStringList get systemLanguage() { return _get_systemLanguage(this); }
46 static SVGStringList _get_systemLanguage(var _this) native;
47
48 bool hasExtension(String extension) {
49 return _hasExtension(this, extension);
50 }
51 static bool _hasExtension(receiver, extension) native;
52
53 // From SVGLangSpace
54
55 String get xmllang() { return _get_xmllang(this); }
56 static String _get_xmllang(var _this) native;
57
58 void set xmllang(String value) { _set_xmllang(this, value); }
59 static void _set_xmllang(var _this, String value) native;
60
61 String get xmlspace() { return _get_xmlspace(this); }
62 static String _get_xmlspace(var _this) native;
63
64 void set xmlspace(String value) { _set_xmlspace(this, value); }
65 static void _set_xmlspace(var _this, String value) native;
66
67 // From SVGExternalResourcesRequired
68
69 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
70 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
71
72 // From SVGStylable
73
74 SVGAnimatedString get className() { return _get_className(this); }
75 static SVGAnimatedString _get_className(var _this) native;
76
77 CSSStyleDeclaration get style() { return _get_style_SVGUseElement(this); }
78 static CSSStyleDeclaration _get_style_SVGUseElement(var _this) native;
79
80 CSSValue getPresentationAttribute(String name) {
81 return _getPresentationAttribute(this, name);
82 }
83 static CSSValue _getPresentationAttribute(receiver, name) native;
84
85 // From SVGTransformable
86
87 SVGAnimatedTransformList get transform() { return _get_transform(this); }
88 static SVGAnimatedTransformList _get_transform(var _this) native;
89
90 // From SVGLocatable
91
92 SVGElement get farthestViewportElement() { return _get_farthestViewportElement (this); }
93 static SVGElement _get_farthestViewportElement(var _this) native;
94
95 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t his); }
96 static SVGElement _get_nearestViewportElement(var _this) native;
97
98 SVGRect getBBox() {
99 return _getBBox(this);
100 }
101 static SVGRect _getBBox(receiver) native;
102
103 SVGMatrix getCTM() {
104 return _getCTM(this);
105 }
106 static SVGMatrix _getCTM(receiver) native;
107
108 SVGMatrix getScreenCTM() {
109 return _getScreenCTM(this);
110 }
111 static SVGMatrix _getScreenCTM(receiver) native;
112
113 SVGMatrix getTransformToElement(SVGElement element) {
114 return _getTransformToElement(this, element);
115 }
116 static SVGMatrix _getTransformToElement(receiver, element) native;
117
118 String get typeName() { return "SVGUseElement"; }
119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698