| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface Animation { | 7 interface Animation { |
| 8 | 8 |
| 9 static final int DIRECTION_ALTERNATE = 1; | |
| 10 | |
| 11 static final int DIRECTION_NORMAL = 0; | |
| 12 | |
| 13 static final int FILL_BACKWARDS = 1; | |
| 14 | |
| 15 static final int FILL_BOTH = 3; | |
| 16 | |
| 17 static final int FILL_FORWARDS = 2; | |
| 18 | |
| 19 static final int FILL_NONE = 0; | |
| 20 | |
| 21 num get delay(); | 9 num get delay(); |
| 22 | 10 |
| 23 int get direction(); | 11 int get direction(); |
| 24 | 12 |
| 25 num get duration(); | 13 num get duration(); |
| 26 | 14 |
| 27 num get elapsedTime(); | 15 num get elapsedTime(); |
| 28 | 16 |
| 29 void set elapsedTime(num value); | 17 void set elapsedTime(num value); |
| 30 | 18 |
| 31 bool get ended(); | 19 bool get ended(); |
| 32 | 20 |
| 33 int get fillMode(); | 21 int get fillMode(); |
| 34 | 22 |
| 35 int get iterationCount(); | 23 int get iterationCount(); |
| 36 | 24 |
| 37 String get name(); | 25 String get name(); |
| 38 | 26 |
| 39 bool get paused(); | 27 bool get paused(); |
| 40 | 28 |
| 41 void pause(); | 29 void pause(); |
| 42 | 30 |
| 43 void play(); | 31 void play(); |
| 44 } | 32 } |
| OLD | NEW |