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; //from ww w. j ava 2 s. c om import edu.psu.rcy5017.speechwriter.model.NoteCard; import android.os.AsyncTask; /** * A task that does something with a note card, but does not need to return any results, or update progress. * @author Ryan Yosua * */ public class NoteCardTask extends AsyncTask<Void, Void, Void> { private final NoteCard noteCard; public NoteCardTask(NoteCard noteCard) { this.noteCard = noteCard; } @Override protected Void doInBackground(Void... params) { return null; } public NoteCard getNoteCard() { return noteCard; } }