| 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 _WebKitAnimationWrappingImplementation extends DOMWrapperBase implements W
ebKitAnimation { | |
| 8 _WebKitAnimationWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__WebKitAnimationWrappingImplementation() native { | |
| 11 return new _WebKitAnimationWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 num get delay() { return _get_delay(this); } | |
| 15 static num _get_delay(var _this) native; | |
| 16 | |
| 17 int get direction() { return _get_direction(this); } | |
| 18 static int _get_direction(var _this) native; | |
| 19 | |
| 20 num get duration() { return _get_duration(this); } | |
| 21 static num _get_duration(var _this) native; | |
| 22 | |
| 23 num get elapsedTime() { return _get_elapsedTime(this); } | |
| 24 static num _get_elapsedTime(var _this) native; | |
| 25 | |
| 26 void set elapsedTime(num value) { _set_elapsedTime(this, value); } | |
| 27 static void _set_elapsedTime(var _this, num value) native; | |
| 28 | |
| 29 bool get ended() { return _get_ended(this); } | |
| 30 static bool _get_ended(var _this) native; | |
| 31 | |
| 32 int get fillMode() { return _get_fillMode(this); } | |
| 33 static int _get_fillMode(var _this) native; | |
| 34 | |
| 35 int get iterationCount() { return _get_iterationCount(this); } | |
| 36 static int _get_iterationCount(var _this) native; | |
| 37 | |
| 38 String get name() { return _get_name(this); } | |
| 39 static String _get_name(var _this) native; | |
| 40 | |
| 41 bool get paused() { return _get_paused(this); } | |
| 42 static bool _get_paused(var _this) native; | |
| 43 | |
| 44 void pause() { | |
| 45 _pause(this); | |
| 46 return; | |
| 47 } | |
| 48 static void _pause(receiver) native; | |
| 49 | |
| 50 void play() { | |
| 51 _play(this); | |
| 52 return; | |
| 53 } | |
| 54 static void _play(receiver) native; | |
| 55 | |
| 56 String get typeName() { return "WebKitAnimation"; } | |
| 57 } | |
| OLD | NEW |