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

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

Powered by Google App Engine
This is Rietveld 408576698