Skip to content

Instantly share code, notes, and snippets.

@ecgreb
Created April 11, 2017 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecgreb/f2d2057cec43877c7f59245da74a661e to your computer and use it in GitHub Desktop.
Save ecgreb/f2d2057cec43877c7f59245da74a661e to your computer and use it in GitHub Desktop.
class TestLoginController implements LoginController {
boolean progress;
boolean error;
boolean success;
@Override public void showProgress(boolean show) {
progress = show;
}
@Override public void showError() {
error = true;
}
@Override public void finishAndStartMainActivity() {
success = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment