OLD | NEW |
| (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 _SVGFEBlendElementWrappingImplementation extends _SVGElementWrappingImplem
entation implements SVGFEBlendElement { | |
8 _SVGFEBlendElementWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGFEBlendElementWrappingImplementation() native { | |
11 return new _SVGFEBlendElementWrappingImplementation(); | |
12 } | |
13 | |
14 SVGAnimatedString get in1() { return _get_in1(this); } | |
15 static SVGAnimatedString _get_in1(var _this) native; | |
16 | |
17 SVGAnimatedString get in2() { return _get_in2(this); } | |
18 static SVGAnimatedString _get_in2(var _this) native; | |
19 | |
20 SVGAnimatedEnumeration get mode() { return _get_mode(this); } | |
21 static SVGAnimatedEnumeration _get_mode(var _this) native; | |
22 | |
23 // From SVGFilterPrimitiveStandardAttributes | |
24 | |
25 SVGAnimatedLength get height() { return _get_height(this); } | |
26 static SVGAnimatedLength _get_height(var _this) native; | |
27 | |
28 SVGAnimatedString get result() { return _get_result(this); } | |
29 static SVGAnimatedString _get_result(var _this) native; | |
30 | |
31 SVGAnimatedLength get width() { return _get_width(this); } | |
32 static SVGAnimatedLength _get_width(var _this) native; | |
33 | |
34 SVGAnimatedLength get x() { return _get_x(this); } | |
35 static SVGAnimatedLength _get_x(var _this) native; | |
36 | |
37 SVGAnimatedLength get y() { return _get_y(this); } | |
38 static SVGAnimatedLength _get_y(var _this) native; | |
39 | |
40 // From SVGStylable | |
41 | |
42 SVGAnimatedString get className() { return _get_className(this); } | |
43 static SVGAnimatedString _get_className(var _this) native; | |
44 | |
45 CSSStyleDeclaration get style() { return _get_style_SVGFEBlendElement(this); } | |
46 static CSSStyleDeclaration _get_style_SVGFEBlendElement(var _this) native; | |
47 | |
48 CSSValue getPresentationAttribute(String name) { | |
49 return _getPresentationAttribute(this, name); | |
50 } | |
51 static CSSValue _getPresentationAttribute(receiver, name) native; | |
52 | |
53 String get typeName() { return "SVGFEBlendElement"; } | |
54 } | |
OLD | NEW |