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

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

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 _SVGRectElementWrappingImplementation extends _SVGElementWrappingImplement ation implements SVGRectElement {
8 _SVGRectElementWrappingImplementation() : super() {}
9
10 static create__SVGRectElementWrappingImplementation() native {
11 return new _SVGRectElementWrappingImplementation();
12 }
13
14 SVGAnimatedLength get height() { return _get_height(this); }
15 static SVGAnimatedLength _get_height(var _this) native;
16
17 SVGAnimatedLength get rx() { return _get_rx(this); }
18 static SVGAnimatedLength _get_rx(var _this) native;
19
20 SVGAnimatedLength get ry() { return _get_ry(this); }
21 static SVGAnimatedLength _get_ry(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 SVGTests
33
34 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this); }
35 static SVGStringList _get_requiredExtensions(var _this) native;
36
37 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); }
38 static SVGStringList _get_requiredFeatures(var _this) native;
39
40 SVGStringList get systemLanguage() { return _get_systemLanguage(this); }
41 static SVGStringList _get_systemLanguage(var _this) native;
42
43 bool hasExtension(String extension) {
44 return _hasExtension(this, extension);
45 }
46 static bool _hasExtension(receiver, extension) native;
47
48 // From SVGLangSpace
49
50 String get xmllang() { return _get_xmllang(this); }
51 static String _get_xmllang(var _this) native;
52
53 void set xmllang(String value) { _set_xmllang(this, value); }
54 static void _set_xmllang(var _this, String value) native;
55
56 String get xmlspace() { return _get_xmlspace(this); }
57 static String _get_xmlspace(var _this) native;
58
59 void set xmlspace(String value) { _set_xmlspace(this, value); }
60 static void _set_xmlspace(var _this, String value) native;
61
62 // From SVGExternalResourcesRequired
63
64 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
65 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
66
67 // From SVGStylable
68
69 SVGAnimatedString get className() { return _get_className(this); }
70 static SVGAnimatedString _get_className(var _this) native;
71
72 CSSStyleDeclaration get style() { return _get_style_SVGRectElement(this); }
73 static CSSStyleDeclaration _get_style_SVGRectElement(var _this) native;
74
75 CSSValue getPresentationAttribute(String name) {
76 return _getPresentationAttribute(this, name);
77 }
78 static CSSValue _getPresentationAttribute(receiver, name) native;
79
80 // From SVGTransformable
81
82 SVGAnimatedTransformList get transform() { return _get_transform(this); }
83 static SVGAnimatedTransformList _get_transform(var _this) native;
84
85 // From SVGLocatable
86
87 SVGElement get farthestViewportElement() { return _get_farthestViewportElement (this); }
88 static SVGElement _get_farthestViewportElement(var _this) native;
89
90 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t his); }
91 static SVGElement _get_nearestViewportElement(var _this) native;
92
93 SVGRect getBBox() {
94 return _getBBox(this);
95 }
96 static SVGRect _getBBox(receiver) native;
97
98 SVGMatrix getCTM() {
99 return _getCTM(this);
100 }
101 static SVGMatrix _getCTM(receiver) native;
102
103 SVGMatrix getScreenCTM() {
104 return _getScreenCTM(this);
105 }
106 static SVGMatrix _getScreenCTM(receiver) native;
107
108 SVGMatrix getTransformToElement(SVGElement element) {
109 return _getTransformToElement(this, element);
110 }
111 static SVGMatrix _getTransformToElement(receiver, element) native;
112
113 String get typeName() { return "SVGRectElement"; }
114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698