| 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 _SVGAngleWrappingImplementation extends DOMWrapperBase implements SVGAngle
{ |
| 8 _SVGAngleWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGAngleWrappingImplementation() native { |
| 11 return new _SVGAngleWrappingImplementation(); |
| 12 } |
| 13 |
| 14 int get unitType() { return _get_unitType(this); } |
| 15 static int _get_unitType(var _this) native; |
| 16 |
| 17 num get value() { return _get_value(this); } |
| 18 static num _get_value(var _this) native; |
| 19 |
| 20 void set value(num value) { _set_value(this, value); } |
| 21 static void _set_value(var _this, num value) native; |
| 22 |
| 23 String get valueAsString() { return _get_valueAsString(this); } |
| 24 static String _get_valueAsString(var _this) native; |
| 25 |
| 26 void set valueAsString(String value) { _set_valueAsString(this, value); } |
| 27 static void _set_valueAsString(var _this, String value) native; |
| 28 |
| 29 num get valueInSpecifiedUnits() { return _get_valueInSpecifiedUnits(this); } |
| 30 static num _get_valueInSpecifiedUnits(var _this) native; |
| 31 |
| 32 void set valueInSpecifiedUnits(num value) { _set_valueInSpecifiedUnits(this, v
alue); } |
| 33 static void _set_valueInSpecifiedUnits(var _this, num value) native; |
| 34 |
| 35 void convertToSpecifiedUnits(int unitType) { |
| 36 _convertToSpecifiedUnits(this, unitType); |
| 37 return; |
| 38 } |
| 39 static void _convertToSpecifiedUnits(receiver, unitType) native; |
| 40 |
| 41 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) { |
| 42 _newValueSpecifiedUnits(this, unitType, valueInSpecifiedUnits); |
| 43 return; |
| 44 } |
| 45 static void _newValueSpecifiedUnits(receiver, unitType, valueInSpecifiedUnits)
native; |
| 46 |
| 47 String get typeName() { return "SVGAngle"; } |
| 48 } |
| OLD | NEW |