Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-android 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 fi.testbed2.android.task; /*from w w w . j a v a2s . c om*/ /** * Interface for tasks which can be executed and which can be aborted. */ public interface Task { public static final String ERROR_MSG_CODE = "errorMsg"; public void execute(); public void cancel(); public boolean isCancelled(); }