Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam 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 at.saws2013.szazam.store; //from www . j a va2 s .com import java.util.List; import org.json.JSONArray; import at.saws2013.szazam.entities.IListItem; public interface ITransactionStore { List<IListItem> getTransactionHistory(); void storeTransactions(JSONArray transactions); List<IListItem> transformToList(JSONArray responseJSON); }