Back to project page WineDB.
The source code is released under:
MIT License
If you think the Android project WineDB 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.selesse.android.winedb.winescraper; /*w w w . ja v a 2s. c om*/ import com.selesse.android.winedb.database.Wine; import java.util.List; /** * Interface for a single Wine Scraper. Every class implementing this interface should fetch wine * information. * * @author Alex Selesse */ public interface WineScraper { List<Wine> scrape(); String getQueryUrl(); List<Exception> getErrors(); String getSourceName(); }