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; // w w w . jav a 2 s . c o m import edu.psu.rcy5017.speechwriter.model.Note; import android.os.AsyncTask; public class NoteTask extends AsyncTask<Void, Void, Void> { private final Note note; public NoteTask(Note note) { this.note = note; } @Override protected Void doInBackground(Void... params) { return null; } public Note getNote() { return note; } }