Created
August 23, 2017 15:50
-
-
Save aemxn/056f138dbd921bd4c4a9428cdd32c5bf to your computer and use it in GitHub Desktop.
Generic view base class
This file contains hidden or 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
public interface RemoteView { | |
void showProgress(); | |
void hideProgress(); | |
void showUnauthorizedError(); | |
void showEmpty(); | |
void showError(String errorMessage); | |
void showMessageLayout(boolean show); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment