Back to project page SpeechWriter.
The source code is released under:
MIT License
If you think the Android project SpeechWriter 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 edu.psu.rcy5017.speechwriter.task; // www.ja va2 s . com import edu.psu.rcy5017.speechwriter.model.Speech; import android.os.AsyncTask; /** * A task that does something with a speech, but does not need to return any results, or update progress. * @author Ryan Yosua * */ public class SpeechTask extends AsyncTask<Void, Void, Void> { private final Speech speech; public SpeechTask(Speech speech) { this.speech = speech; } @Override protected Void doInBackground(Void... params) { return null; } public Speech getSpeech() { return speech; } }