mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-31 14:53:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package fr.free.nrw.commons;
 | |
| 
 | |
| import androidx.annotation.NonNull;
 | |
| 
 | |
| /**
 | |
|  * Base presenter, enforcing contracts to atach and detach view
 | |
|  */
 | |
| public interface BasePresenter<T> {
 | |
|     /**
 | |
|      * Until a view is attached, it is open to listen events from the presenter
 | |
|      */
 | |
|     void onAttachView(@NonNull T view);
 | |
| 
 | |
|     /**
 | |
|      * Detaching a view makes sure that the view no more receives events from the presenter
 | |
|      */
 | |
|     void onDetachView();
 | |
| }
 | 
