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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGFilterElementWrappingImplementation.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 _SVGFilterElementWrappingImplementation extends _SVGElementWrappingImpleme ntation implements SVGFilterElement {
8 _SVGFilterElementWrappingImplementation() : super() {}
9
10 static create__SVGFilterElementWrappingImplementation() native {
11 return new _SVGFilterElementWrappingImplementation();
12 }
13
14 SVGAnimatedInteger get filterResX() { return _get_filterResX(this); }
15 static SVGAnimatedInteger _get_filterResX(var _this) native;
16
17 SVGAnimatedInteger get filterResY() { return _get_filterResY(this); }
18 static SVGAnimatedInteger _get_filterResY(var _this) native;
19
20 SVGAnimatedEnumeration get filterUnits() { return _get_filterUnits(this); }
21 static SVGAnimatedEnumeration _get_filterUnits(var _this) native;
22
23 SVGAnimatedLength get height() { return _get_height(this); }
24 static SVGAnimatedLength _get_height(var _this) native;
25
26 SVGAnimatedEnumeration get primitiveUnits() { return _get_primitiveUnits(this) ; }
27 static SVGAnimatedEnumeration _get_primitiveUnits(var _this) native;
28
29 SVGAnimatedLength get width() { return _get_width(this); }
30 static SVGAnimatedLength _get_width(var _this) native;
31
32 SVGAnimatedLength get x() { return _get_x(this); }
33 static SVGAnimatedLength _get_x(var _this) native;
34
35 SVGAnimatedLength get y() { return _get_y(this); }
36 static SVGAnimatedLength _get_y(var _this) native;
37
38 void setFilterRes(int filterResX, int filterResY) {
39 _setFilterRes(this, filterResX, filterResY);
40 return;
41 }
42 static void _setFilterRes(receiver, filterResX, filterResY) native;
43
44 // From SVGURIReference
45
46 SVGAnimatedString get href() { return _get_href(this); }
47 static SVGAnimatedString _get_href(var _this) native;
48
49 // From SVGLangSpace
50
51 String get xmllang() { return _get_xmllang(this); }
52 static String _get_xmllang(var _this) native;
53
54 void set xmllang(String value) { _set_xmllang(this, value); }
55 static void _set_xmllang(var _this, String value) native;
56
57 String get xmlspace() { return _get_xmlspace(this); }
58 static String _get_xmlspace(var _this) native;
59
60 void set xmlspace(String value) { _set_xmlspace(this, value); }
61 static void _set_xmlspace(var _this, String value) native;
62
63 // From SVGExternalResourcesRequired
64
65 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
66 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
67
68 // From SVGStylable
69
70 SVGAnimatedString get className() { return _get_className(this); }
71 static SVGAnimatedString _get_className(var _this) native;
72
73 CSSStyleDeclaration get style() { return _get_style_SVGFilterElement(this); }
74 static CSSStyleDeclaration _get_style_SVGFilterElement(var _this) native;
75
76 CSSValue getPresentationAttribute(String name) {
77 return _getPresentationAttribute(this, name);
78 }
79 static CSSValue _getPresentationAttribute(receiver, name) native;
80
81 String get typeName() { return "SVGFilterElement"; }
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698