| 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 _SVGFESpecularLightingElementWrappingImplementation extends _SVGElementWra
ppingImplementation implements SVGFESpecularLightingElement { | |
| 8 _SVGFESpecularLightingElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__SVGFESpecularLightingElementWrappingImplementation() native { | |
| 11 return new _SVGFESpecularLightingElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 SVGAnimatedString get in1() { return _get_in1(this); } | |
| 15 static SVGAnimatedString _get_in1(var _this) native; | |
| 16 | |
| 17 SVGAnimatedNumber get specularConstant() { return _get_specularConstant(this);
} | |
| 18 static SVGAnimatedNumber _get_specularConstant(var _this) native; | |
| 19 | |
| 20 SVGAnimatedNumber get specularExponent() { return _get_specularExponent(this);
} | |
| 21 static SVGAnimatedNumber _get_specularExponent(var _this) native; | |
| 22 | |
| 23 SVGAnimatedNumber get surfaceScale() { return _get_surfaceScale(this); } | |
| 24 static SVGAnimatedNumber _get_surfaceScale(var _this) native; | |
| 25 | |
| 26 // From SVGFilterPrimitiveStandardAttributes | |
| 27 | |
| 28 SVGAnimatedLength get height() { return _get_height(this); } | |
| 29 static SVGAnimatedLength _get_height(var _this) native; | |
| 30 | |
| 31 SVGAnimatedString get result() { return _get_result(this); } | |
| 32 static SVGAnimatedString _get_result(var _this) native; | |
| 33 | |
| 34 SVGAnimatedLength get width() { return _get_width(this); } | |
| 35 static SVGAnimatedLength _get_width(var _this) native; | |
| 36 | |
| 37 SVGAnimatedLength get x() { return _get_x(this); } | |
| 38 static SVGAnimatedLength _get_x(var _this) native; | |
| 39 | |
| 40 SVGAnimatedLength get y() { return _get_y(this); } | |
| 41 static SVGAnimatedLength _get_y(var _this) native; | |
| 42 | |
| 43 // From SVGStylable | |
| 44 | |
| 45 SVGAnimatedString get className() { return _get_className(this); } | |
| 46 static SVGAnimatedString _get_className(var _this) native; | |
| 47 | |
| 48 CSSStyleDeclaration get style() { return _get_style_SVGFESpecularLightingEleme
nt(this); } | |
| 49 static CSSStyleDeclaration _get_style_SVGFESpecularLightingElement(var _this)
native; | |
| 50 | |
| 51 CSSValue getPresentationAttribute(String name) { | |
| 52 return _getPresentationAttribute(this, name); | |
| 53 } | |
| 54 static CSSValue _getPresentationAttribute(receiver, name) native; | |
| 55 | |
| 56 String get typeName() { return "SVGFESpecularLightingElement"; } | |
| 57 } | |
| OLD | NEW |