| 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 _SVGFECompositeElementWrappingImplementation extends _SVGElementWrappingIm
plementation implements SVGFECompositeElement { |
| 8 _SVGFECompositeElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGFECompositeElementWrappingImplementation() native { |
| 11 return new _SVGFECompositeElementWrappingImplementation(); |
| 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 SVGAnimatedNumber get k1() { return _get_k1(this); } |
| 21 static SVGAnimatedNumber _get_k1(var _this) native; |
| 22 |
| 23 SVGAnimatedNumber get k2() { return _get_k2(this); } |
| 24 static SVGAnimatedNumber _get_k2(var _this) native; |
| 25 |
| 26 SVGAnimatedNumber get k3() { return _get_k3(this); } |
| 27 static SVGAnimatedNumber _get_k3(var _this) native; |
| 28 |
| 29 SVGAnimatedNumber get k4() { return _get_k4(this); } |
| 30 static SVGAnimatedNumber _get_k4(var _this) native; |
| 31 |
| 32 SVGAnimatedEnumeration get operator() { return _get_operator(this); } |
| 33 static SVGAnimatedEnumeration _get_operator(var _this) native; |
| 34 |
| 35 // From SVGFilterPrimitiveStandardAttributes |
| 36 |
| 37 SVGAnimatedLength get height() { return _get_height(this); } |
| 38 static SVGAnimatedLength _get_height(var _this) native; |
| 39 |
| 40 SVGAnimatedString get result() { return _get_result(this); } |
| 41 static SVGAnimatedString _get_result(var _this) native; |
| 42 |
| 43 SVGAnimatedLength get width() { return _get_width(this); } |
| 44 static SVGAnimatedLength _get_width(var _this) native; |
| 45 |
| 46 SVGAnimatedLength get x() { return _get_x(this); } |
| 47 static SVGAnimatedLength _get_x(var _this) native; |
| 48 |
| 49 SVGAnimatedLength get y() { return _get_y(this); } |
| 50 static SVGAnimatedLength _get_y(var _this) native; |
| 51 |
| 52 // From SVGStylable |
| 53 |
| 54 SVGAnimatedString get className() { return _get_className(this); } |
| 55 static SVGAnimatedString _get_className(var _this) native; |
| 56 |
| 57 CSSStyleDeclaration get style() { return _get_style_SVGFECompositeElement(this
); } |
| 58 static CSSStyleDeclaration _get_style_SVGFECompositeElement(var _this) native; |
| 59 |
| 60 CSSValue getPresentationAttribute(String name) { |
| 61 return _getPresentationAttribute(this, name); |
| 62 } |
| 63 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 64 |
| 65 String get typeName() { return "SVGFECompositeElement"; } |
| 66 } |
| OLD | NEW |