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