| 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 _SVGFESpotLightElementWrappingImplementation extends _SVGElementWrappingIm
plementation implements SVGFESpotLightElement { |
| 8 _SVGFESpotLightElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGFESpotLightElementWrappingImplementation() native { |
| 11 return new _SVGFESpotLightElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 SVGAnimatedNumber get limitingConeAngle() { return _get_limitingConeAngle(this
); } |
| 15 static SVGAnimatedNumber _get_limitingConeAngle(var _this) native; |
| 16 |
| 17 SVGAnimatedNumber get pointsAtX() { return _get_pointsAtX(this); } |
| 18 static SVGAnimatedNumber _get_pointsAtX(var _this) native; |
| 19 |
| 20 SVGAnimatedNumber get pointsAtY() { return _get_pointsAtY(this); } |
| 21 static SVGAnimatedNumber _get_pointsAtY(var _this) native; |
| 22 |
| 23 SVGAnimatedNumber get pointsAtZ() { return _get_pointsAtZ(this); } |
| 24 static SVGAnimatedNumber _get_pointsAtZ(var _this) native; |
| 25 |
| 26 SVGAnimatedNumber get specularExponent() { return _get_specularExponent(this);
} |
| 27 static SVGAnimatedNumber _get_specularExponent(var _this) native; |
| 28 |
| 29 SVGAnimatedNumber get x() { return _get_x(this); } |
| 30 static SVGAnimatedNumber _get_x(var _this) native; |
| 31 |
| 32 SVGAnimatedNumber get y() { return _get_y(this); } |
| 33 static SVGAnimatedNumber _get_y(var _this) native; |
| 34 |
| 35 SVGAnimatedNumber get z() { return _get_z(this); } |
| 36 static SVGAnimatedNumber _get_z(var _this) native; |
| 37 |
| 38 String get typeName() { return "SVGFESpotLightElement"; } |
| 39 } |
| OLD | NEW |