Back to project page cnBeta.
The source code is released under:
Apache License
If you think the Android project cnBeta 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.guest.cnbeta.service; //ww w . j a v a2s . c o m import java.io.IOException; import android.content.Context; import com.guest.cnbeta.loadsource.LoadSource; import com.guest.cnbeta.loadsource.LoadSourceInterface; import com.guest.cnbeta.module.Article; public class ArticleService extends BaseService { private LoadSourceInterface loadSource = new LoadSource(); public ArticleService(Context context) { super(context); // TODO Auto-generated constructor stub } public Article getMoreDetail(Article article) throws IOException { return loadSource.getArticleContent(article); } }