Skip to content

Instantly share code, notes, and snippets.

@ilkinulas
Created April 17, 2016 08:41
Show Gist options
  • Save ilkinulas/0c5c8dd1e2c4dbfa6574d7f389b5f2a5 to your computer and use it in GitHub Desktop.
Save ilkinulas/0c5c8dd1e2c4dbfa6574d7f389b5f2a5 to your computer and use it in GitHub Desktop.
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