blob: 7ba9b0cbd40e538ae85000065836a9f87cefae51 [file] [log] [blame]
package org.apache.fineract.ui.base;
/**
* Base interface that any class that wants to act as a View in the MVP (Model View Presenter)
* pattern must implement. Generally this interface will be extended by a more specific interface
* that then usually will be implemented by an Activity or Fragment.
*/
public interface MvpView {
void showNoInternetConnection();
void showError(String message);
}