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; //from www . ja v a 2s . c om import net.grosinger.bookmetasearch.inventory.AvailableBook; import net.grosinger.bookmetasearch.book.Book; import java.util.List; /** * Created by tony on 11/3/13. */ public interface InventoryQuery { public void setSearchTarget(Book book); public List<AvailableBook> loadInventory(); }