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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGFEConvolveMatrixElementWrappingImplementation.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 _SVGFEConvolveMatrixElementWrappingImplementation extends _SVGElementWrapp ingImplementation implements SVGFEConvolveMatrixElement {
8 _SVGFEConvolveMatrixElementWrappingImplementation() : super() {}
9
10 static create__SVGFEConvolveMatrixElementWrappingImplementation() native {
11 return new _SVGFEConvolveMatrixElementWrappingImplementation();
12 }
13
14 SVGAnimatedNumber get bias() { return _get_bias(this); }
15 static SVGAnimatedNumber _get_bias(var _this) native;
16
17 SVGAnimatedNumber get divisor() { return _get_divisor(this); }
18 static SVGAnimatedNumber _get_divisor(var _this) native;
19
20 SVGAnimatedEnumeration get edgeMode() { return _get_edgeMode(this); }
21 static SVGAnimatedEnumeration _get_edgeMode(var _this) native;
22
23 SVGAnimatedString get in1() { return _get_in1(this); }
24 static SVGAnimatedString _get_in1(var _this) native;
25
26 SVGAnimatedNumberList get kernelMatrix() { return _get_kernelMatrix(this); }
27 static SVGAnimatedNumberList _get_kernelMatrix(var _this) native;
28
29 SVGAnimatedNumber get kernelUnitLengthX() { return _get_kernelUnitLengthX(this ); }
30 static SVGAnimatedNumber _get_kernelUnitLengthX(var _this) native;
31
32 SVGAnimatedNumber get kernelUnitLengthY() { return _get_kernelUnitLengthY(this ); }
33 static SVGAnimatedNumber _get_kernelUnitLengthY(var _this) native;
34
35 SVGAnimatedInteger get orderX() { return _get_orderX(this); }
36 static SVGAnimatedInteger _get_orderX(var _this) native;
37
38 SVGAnimatedInteger get orderY() { return _get_orderY(this); }
39 static SVGAnimatedInteger _get_orderY(var _this) native;
40
41 SVGAnimatedBoolean get preserveAlpha() { return _get_preserveAlpha(this); }
42 static SVGAnimatedBoolean _get_preserveAlpha(var _this) native;
43
44 SVGAnimatedInteger get targetX() { return _get_targetX(this); }
45 static SVGAnimatedInteger _get_targetX(var _this) native;
46
47 SVGAnimatedInteger get targetY() { return _get_targetY(this); }
48 static SVGAnimatedInteger _get_targetY(var _this) native;
49
50 // From SVGFilterPrimitiveStandardAttributes
51
52 SVGAnimatedLength get height() { return _get_height(this); }
53 static SVGAnimatedLength _get_height(var _this) native;
54
55 SVGAnimatedString get result() { return _get_result(this); }
56 static SVGAnimatedString _get_result(var _this) native;
57
58 SVGAnimatedLength get width() { return _get_width(this); }
59 static SVGAnimatedLength _get_width(var _this) native;
60
61 SVGAnimatedLength get x() { return _get_x(this); }
62 static SVGAnimatedLength _get_x(var _this) native;
63
64 SVGAnimatedLength get y() { return _get_y(this); }
65 static SVGAnimatedLength _get_y(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_SVGFEConvolveMatrixElement (this); }
73 static CSSStyleDeclaration _get_style_SVGFEConvolveMatrixElement(var _this) na tive;
74
75 CSSValue getPresentationAttribute(String name) {
76 return _getPresentationAttribute(this, name);
77 }
78 static CSSValue _getPresentationAttribute(receiver, name) native;
79
80 String get typeName() { return "SVGFEConvolveMatrixElement"; }
81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698