Back to project page DEVIEW2014_AndroidApp_Demo.
The source code is released under:
Apache License
If you think the Android project DEVIEW2014_AndroidApp_Demo 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.nhn.android.deview; // ww w . j a v a 2 s . c o m public class ThreadWorker<T> implements Runnable { T objParam; Runnable runnable; public ThreadWorker(AppContext conext,T objparam,Runnable r) { this.objParam = objparam; } @Override public void run() { runnable.run(); } }