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; //from w w w . j av a2s. com /** * Created by truxall on 11/25/2014. */ public interface ToDoPresenter { public void retrieveData(); public void deleteToDo(long id, int position); public void addToDo(String item); }