Back to project page Torch.
The source code is released under:
GNU General Public License
If you think the Android project Torch 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.aktarer.torch.features; /*from w ww.java 2 s. co m*/ import android.content.Context; import com.aktarer.torch.ServerThread; public abstract class Base { protected Context context; protected ServerThread thread; public Base(Context c, ServerThread t) { context = c; thread = t; } public abstract void run(); }