Back to project page RoboBinding-album-sample.
The source code is released under:
Apache License
If you think the Android project RoboBinding-album-sample 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 org.robobinding.albumsample.store; /* w w w.ja v a 2 s. co m*/ import java.util.List; import org.robobinding.albumsample.model.Album; /** * * @since 1.0 * @author Cheng Wei * @author Robert Taylor */ public interface AlbumStore { Album get(long albumId); Album getByIndex(int position); List<Album> getAll(); void save(Album album); void delete(Album album); void clear(); }