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 _SVGZoomEventWrappingImplementation extends _UIEventWrappingImplementation
implements SVGZoomEvent { | |
8 _SVGZoomEventWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGZoomEventWrappingImplementation() native { | |
11 return new _SVGZoomEventWrappingImplementation(); | |
12 } | |
13 | |
14 num get newScale() { return _get_newScale(this); } | |
15 static num _get_newScale(var _this) native; | |
16 | |
17 SVGPoint get newTranslate() { return _get_newTranslate(this); } | |
18 static SVGPoint _get_newTranslate(var _this) native; | |
19 | |
20 num get previousScale() { return _get_previousScale(this); } | |
21 static num _get_previousScale(var _this) native; | |
22 | |
23 SVGPoint get previousTranslate() { return _get_previousTranslate(this); } | |
24 static SVGPoint _get_previousTranslate(var _this) native; | |
25 | |
26 SVGRect get zoomRectScreen() { return _get_zoomRectScreen(this); } | |
27 static SVGRect _get_zoomRectScreen(var _this) native; | |
28 | |
29 String get typeName() { return "SVGZoomEvent"; } | |
30 } | |
OLD | NEW |