Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch 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 net.grosinger.bookmetasearch.loader; //ww w .j a v a 2 s . c o m import net.grosinger.bookmetasearch.book.Book; import java.util.List; /** * Created by tony on 11/2/13. */ public interface ProductQuery { public void setSearchTerms(String searchTerms); public List<Book> loadProducts(); }