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.devfest.dagger.data; /*www . j ava2 s . co m*/ import java.util.List; /** * Created by truxall on 4/18/2014. * An Interfact for a ToDoData provider */ public interface DataProvider { void addTask(ToDo item); long getNextId(); void deleteAll(); void deleteTask(final long id); List<ToDo> findAll(); }