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.data; /*from w ww . jav a2s.c om*/ import java.util.List; /** * Created by david on 11/23/14. */ public interface DataProvider { void addTask(ToDo item); long getNextId(); void deleteAll(); void deleteTask(final long id); List<ToDo> findAll(); }