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

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

Powered by Google App Engine
This is Rietveld 408576698