Skip to content

Instantly share code, notes, and snippets.

@Guilherme-HRamos
Created July 28, 2019 02:10
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 Guilherme-HRamos/1ed9efb035f6af7cbb91cfd0b735b8f6 to your computer and use it in GitHub Desktop.
Save Guilherme-HRamos/1ed9efb035f6af7cbb91cfd0b735b8f6 to your computer and use it in GitHub Desktop.
Medium - Android/Java Interfaces like a Boss! - Backwards Compatibility
public interface BaseViewContract {
void onShowLoading();
void onHideLoading();
void onShowError(String error);
}
public interface ViewContract extends BaseViewContract {
void onAccountUpdate();
void onAccountRemoved();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment