com.arellomobile.mvp.ViewStateProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moxy Show documentation
Show all versions of moxy Show documentation
MoxyX, we added X for make this library coolest
The newest version!
package com.arellomobile.mvp;
import com.arellomobile.mvp.viewstate.MvpViewState;
/**
* Date: 18.12.2015
* Time: 13:15
*
* @author Yuri Shmakov
*/
public abstract class ViewStateProvider {
/**
* Presenter creates view state object by calling this method.
*
* @return view state class name
*/
public abstract MvpViewState getViewState();
}