Created
April 17, 2016 08:41
-
-
Save ilkinulas/0c5c8dd1e2c4dbfa6574d7f389b5f2a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package codekata.observer; | |
public class CountDownTimerView implements CountDownObserver { | |
@Override | |
public void onStart() { | |
//play count down start animation | |
} | |
@Override | |
public void onCountDown(long elapsed, long remaining) { | |
//update view | |
} | |
@Override | |
public void onFinish() { | |
//play count down end animation | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment