Back to project page foxail_reader.
The source code is released under:
GNU General Public License
If you think the Android project foxail_reader 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.foxail.android.reader.client; /* w w w . ja v a2 s . c om*/ import java.util.List; import org.foxail.android.reader.model.News; public abstract class Client { abstract public String getListUrl(int pageNum); abstract public String getContentUrl(String id); abstract public String getShareUrl(String id); abstract public List<News> getNewsList(String responseStr); abstract public String getNewsContent(String responseStr); }