Back to project page android-unittesting.
The source code is released under:
Apache License
If you think the Android project android-unittesting listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hp.mvp; //w ww.j a v a2 s.c o m import com.hp.mvp.data.ToDo; import java.util.List; /** * Interface for the View in our MVP example. Allows the Presenter to bind the data to the ListView */ public interface ToDoView { void bindToDoList(List<ToDo> data); MainApplication getMainApplication(); }