| 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 _SVGFEDisplacementMapElementWrappingImplementation extends _SVGElementWrap
pingImplementation implements SVGFEDisplacementMapElement { |
| 8 _SVGFEDisplacementMapElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGFEDisplacementMapElementWrappingImplementation() native { |
| 11 return new _SVGFEDisplacementMapElementWrappingImplementation(); |
| 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 scale() { return _get_scale(this); } |
| 21 static SVGAnimatedNumber _get_scale(var _this) native; |
| 22 |
| 23 SVGAnimatedEnumeration get xChannelSelector() { return _get_xChannelSelector(t
his); } |
| 24 static SVGAnimatedEnumeration _get_xChannelSelector(var _this) native; |
| 25 |
| 26 SVGAnimatedEnumeration get yChannelSelector() { return _get_yChannelSelector(t
his); } |
| 27 static SVGAnimatedEnumeration _get_yChannelSelector(var _this) native; |
| 28 |
| 29 // From SVGFilterPrimitiveStandardAttributes |
| 30 |
| 31 SVGAnimatedLength get height() { return _get_height(this); } |
| 32 static SVGAnimatedLength _get_height(var _this) native; |
| 33 |
| 34 SVGAnimatedString get result() { return _get_result(this); } |
| 35 static SVGAnimatedString _get_result(var _this) native; |
| 36 |
| 37 SVGAnimatedLength get width() { return _get_width(this); } |
| 38 static SVGAnimatedLength _get_width(var _this) native; |
| 39 |
| 40 SVGAnimatedLength get x() { return _get_x(this); } |
| 41 static SVGAnimatedLength _get_x(var _this) native; |
| 42 |
| 43 SVGAnimatedLength get y() { return _get_y(this); } |
| 44 static SVGAnimatedLength _get_y(var _this) native; |
| 45 |
| 46 // From SVGStylable |
| 47 |
| 48 SVGAnimatedString get className() { return _get_className(this); } |
| 49 static SVGAnimatedString _get_className(var _this) native; |
| 50 |
| 51 CSSStyleDeclaration get style() { return _get_style_SVGFEDisplacementMapElemen
t(this); } |
| 52 static CSSStyleDeclaration _get_style_SVGFEDisplacementMapElement(var _this) n
ative; |
| 53 |
| 54 CSSValue getPresentationAttribute(String name) { |
| 55 return _getPresentationAttribute(this, name); |
| 56 } |
| 57 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 58 |
| 59 String get typeName() { return "SVGFEDisplacementMapElement"; } |
| 60 } |
| OLD | NEW |