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

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

Powered by Google App Engine
This is Rietveld 408576698