Back to project page MatchHistory-League.
The source code is released under:
MIT License
If you think the Android project MatchHistory-League 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.lando.matchhistory.AsyncTask; /*from w w w. jav a 2 s. co m*/ import android.os.AsyncTask; /** * Created by Lando on 1/2/2015. */ public abstract class BaseTask<Params, Progress, Result> extends AsyncTask<Params, Progress, Result> { protected UpdateResponse mListener=null; public interface UpdateResponse { void processFinish(); } public void setListener(UpdateResponse listener){ mListener = listener; } }